ultracart_api 3.10.59 → 3.10.60

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c05f5bad8992db00b040dea25dbfadf73ef19e23cc05e3dc53cb6e5018f3bce
4
- data.tar.gz: 6e09b07fac0579fc1797a6743bef271299c988cd22148f3a86f9fa8ccfd3f950
3
+ metadata.gz: 8ae39ba428e276a0e0b5fca7bf34a24f910b1f9475409615a6b72aa1b7de0c69
4
+ data.tar.gz: 54b7663a30fe6d0e2a268b090579ac34cef3bf780ee1daf2f97fbe6fee5eddd1
5
5
  SHA512:
6
- metadata.gz: 1b051447838c903aa2671e5c0e92ec8c300682e7ebd0e516580c767eb36581e608e0b12944316d56301f7824614e26686e92d6a99f86f96afb59cc74ea75d4aa
7
- data.tar.gz: a442d68c3807f34242869658c743c2bab4b6da1d03547e2ee07ee307eb65064eaf593d70f1ff8ab847ce4df764c35bc4aaff210bf71ad9ad4f7c3fa8e50ebb8b
6
+ metadata.gz: 1e5cb568a899738c4e0fb60dc8cef31fc59ddf51c2813917a1b75978f346fcc95fbdd6bc031960ae3d073565d9ba7dcd6d456eee7d8e0169c49193ad5f8186a1
7
+ data.tar.gz: d5170a0d52c150efc3501725b303105de10c6d0070f44637533290c8c723576cdc79f9f83a5d4092f1e28098e2930a2ad74b3a37d98c044bfd4ac97d91e5b6b1
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 3.10.59
10
+ - Package version: 3.10.60
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
13
13
 
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-3.10.59.gem
27
+ gem install ./ultracart_api-3.10.60.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.59.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.60.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'ultracart_api', '~> 3.10.59'
35
+ gem 'ultracart_api', '~> 3.10.60'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1212,6 +1212,7 @@ Not every change is committed to every SDK.
1212
1212
 
1213
1213
  | Version | Date | Comments |
1214
1214
  | --: | :-: | --- |
1215
+ | 3.10.60 | 10/31/2022 | communication bug fix on dup annonation |
1215
1216
  | 3.10.59 | 10/31/2022 | communications - addl statistics on EmailStepStat object |
1216
1217
  | 3.10.58 | 10/26/2022 | esp - methods for sms testing |
1217
1218
  | 3.10.57 | 10/17/2022 | conversations - add last_interactive_message_dts |
@@ -3,8 +3,9 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **left_click_count** | **Integer** | click count (left side) | [optional]
6
7
  **left_click_count_formatted** | **String** | click count formatted (left side) | [optional]
7
- **left_conversion_count** | **Integer** | click count (left side) | [optional]
8
+ **left_conversion_count** | **Integer** | conversion count (left/default side) | [optional]
8
9
  **left_conversion_count_formatted** | **String** | conversion count formatted (left/default side) | [optional]
9
10
  **left_customer_count** | **Integer** | customer count (left/default side) | [optional]
10
11
  **left_customer_count_formatted** | **String** | customer count formatted (left/default side) | [optional]
@@ -14,10 +14,13 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class EmailStepStat
17
+ # click count (left side)
18
+ attr_accessor :left_click_count
19
+
17
20
  # click count formatted (left side)
18
21
  attr_accessor :left_click_count_formatted
19
22
 
20
- # click count (left side)
23
+ # conversion count (left/default side)
21
24
  attr_accessor :left_conversion_count
22
25
 
23
26
  # conversion count formatted (left/default side)
@@ -104,6 +107,7 @@ module UltracartClient
104
107
  # Attribute mapping from ruby-style variable name to JSON key.
105
108
  def self.attribute_map
106
109
  {
110
+ :'left_click_count' => :'left_click_count',
107
111
  :'left_click_count_formatted' => :'left_click_count_formatted',
108
112
  :'left_conversion_count' => :'left_conversion_count',
109
113
  :'left_conversion_count_formatted' => :'left_conversion_count_formatted',
@@ -139,6 +143,7 @@ module UltracartClient
139
143
  # Attribute type mapping.
140
144
  def self.swagger_types
141
145
  {
146
+ :'left_click_count' => :'Integer',
142
147
  :'left_click_count_formatted' => :'String',
143
148
  :'left_conversion_count' => :'Integer',
144
149
  :'left_conversion_count_formatted' => :'String',
@@ -179,6 +184,10 @@ module UltracartClient
179
184
  # convert string to symbol for hash key
180
185
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
181
186
 
187
+ if attributes.has_key?(:'left_click_count')
188
+ self.left_click_count = attributes[:'left_click_count']
189
+ end
190
+
182
191
  if attributes.has_key?(:'left_click_count_formatted')
183
192
  self.left_click_count_formatted = attributes[:'left_click_count_formatted']
184
193
  end
@@ -314,6 +323,7 @@ module UltracartClient
314
323
  def ==(o)
315
324
  return true if self.equal?(o)
316
325
  self.class == o.class &&
326
+ left_click_count == o.left_click_count &&
317
327
  left_click_count_formatted == o.left_click_count_formatted &&
318
328
  left_conversion_count == o.left_conversion_count &&
319
329
  left_conversion_count_formatted == o.left_conversion_count_formatted &&
@@ -354,7 +364,7 @@ module UltracartClient
354
364
  # Calculates hash code according to all attributes.
355
365
  # @return [Fixnum] Hash code
356
366
  def hash
357
- [left_click_count_formatted, left_conversion_count, left_conversion_count_formatted, left_customer_count, left_customer_count_formatted, left_delivered_count, left_delivered_count_formatted, left_order_count, left_order_count_formatted, left_profit, left_profit_formatted, left_revenue, left_revenue_formatted, left_send_count, left_send_count_formatted, left_skipped_count, left_skipped_count_formatted, left_unsubscribe_count, left_unsubscribe_count_formatted, right_conversion_count, right_conversion_count_formatted, right_customer_count, right_customer_count_formatted, right_order_count, right_order_count_formatted, right_profit, right_profit_formatted, right_revenue, right_revenue_formatted].hash
367
+ [left_click_count, left_click_count_formatted, left_conversion_count, left_conversion_count_formatted, left_customer_count, left_customer_count_formatted, left_delivered_count, left_delivered_count_formatted, left_order_count, left_order_count_formatted, left_profit, left_profit_formatted, left_revenue, left_revenue_formatted, left_send_count, left_send_count_formatted, left_skipped_count, left_skipped_count_formatted, left_unsubscribe_count, left_unsubscribe_count_formatted, right_conversion_count, right_conversion_count_formatted, right_customer_count, right_customer_count_formatted, right_order_count, right_order_count_formatted, right_profit, right_profit_formatted, right_revenue, right_revenue_formatted].hash
358
368
  end
359
369
 
360
370
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.59'
14
+ VERSION = '3.10.60'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.59
4
+ version: 3.10.60
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart