exact_target_sdk 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,9 @@
1
1
  = ExactTarget SDK
2
2
 
3
+ == Version 0.2.0
4
+ * Adding Attribute object
5
+ * Adding Attributes property to TriggeredSend
6
+
3
7
  == Version 0.1.0
4
8
  * Adding ErrorCode to CreateResult
5
9
 
@@ -0,0 +1,8 @@
1
+ module ExactTargetSDK
2
+ class Attribute < APIObject
3
+
4
+ property 'Name', true
5
+ property 'Value'
6
+
7
+ end
8
+ end
@@ -1,8 +1,9 @@
1
1
  module ExactTargetSDK
2
2
  class TriggeredSend < APIObject
3
3
 
4
- property 'TriggeredSendDefinition', true
4
+ array_property 'Attributes'
5
5
  array_property 'Subscribers'
6
+ property 'TriggeredSendDefinition', true
6
7
 
7
8
  end
8
9
  end
@@ -1,3 +1,3 @@
1
1
  module ExactTargetSDK
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
@@ -4,6 +4,7 @@ require 'exact_target_sdk/errors'
4
4
  module ExactTargetSDK
5
5
 
6
6
  autoload :APIObject, 'exact_target_sdk/api_object'
7
+ autoload :Attribute, 'exact_target_sdk/attribute'
7
8
  autoload :Client, 'exact_target_sdk/client'
8
9
  autoload :CreateResponse, 'exact_target_sdk/create_response'
9
10
  autoload :CreateResult, 'exact_target_sdk/create_result'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exact_target_sdk
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
8
+ - 2
9
9
  - 0
10
- version: 0.1.0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Dawson
@@ -89,6 +89,7 @@ extra_rdoc_files:
89
89
  - LICENSE.txt
90
90
  files:
91
91
  - lib/exact_target_sdk/api_object.rb
92
+ - lib/exact_target_sdk/attribute.rb
92
93
  - lib/exact_target_sdk/client.rb
93
94
  - lib/exact_target_sdk/config.rb
94
95
  - lib/exact_target_sdk/create_response.rb