ultracart_api 4.0.76.rc → 4.0.77.rc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c9adfd9dce6cb484bccaa77e32038dd205c66f921993ec49814f3ea0ce4f660
4
- data.tar.gz: 231e0a665597dd6a2dbee6fc57a7aa417fc790d3c277c2ccd6cdfe46bae8d132
3
+ metadata.gz: 639888558132173a7137fed8b1f5e1814b130db84cba9468cddedf3b283c0871
4
+ data.tar.gz: f95221716e72505b7f945b72764058444f74e7d589ecf7bea98a5fa43ec83361
5
5
  SHA512:
6
- metadata.gz: 7c0cdab491c50691b4f4ebd5b94f77e94fd7ecf920f7cfb10fc5c0e43079cf9a5a308dd1ccfb54304de398fa4babfb7e5939d7dd021907297e6b24a9867c8023
7
- data.tar.gz: 9374d5f9bcd81fc625ab23e84479689d242e884b5ca62bcb10a6ce464bbe0b0b5b011504ca62a111b85ff5a6fac2e81b7a5fe078c485f8c1291c87a8df9af080
6
+ metadata.gz: 8a7cb390c2b99dd33a63dedc8f4905ac5e96ad8f786b673a3c8c1068fa7e0289bd97f3b426bd61cf00be282919be83a0b96348bd7a1aebbb7080df8e9b0357be
7
+ data.tar.gz: 5659bb0b2c34683274a020427cd53a2d11a7e3a8519ccc4ec5be99744a7a33e2208d3405245d85643d156e1af49cf06834a5acd5f9cad0ada4dd6b1e9f6dbb69
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 4.0.76.rc
10
+ - Package version: 4.0.77.rc
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
13
13
 
@@ -24,16 +24,16 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-4.0.76.rc.gem
27
+ gem install ./ultracart_api-4.0.77.rc.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.76.rc.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.77.rc.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'ultracart_api', '~> 4.0.76.rc'
36
+ gem 'ultracart_api', '~> 4.0.77.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1221,6 +1221,7 @@ Not every change is committed to every SDK.
1221
1221
 
1222
1222
  | Version | Date | Comments |
1223
1223
  | --: | :-: | --- |
1224
+ | 4.0.77-RC | 10/31/2022 | communication bug fix on dup annonation |
1224
1225
  | 4.0.76-RC | 10/31/2022 | communications - addl statistics on EmailStepStat object |
1225
1226
  | 4.0.75-RC | 10/26/2022 | esp - methods for sms testing |
1226
1227
  | 4.0.74-RC | 10/17/2022 | conversations - add last_interactive_message_dts |
@@ -4,8 +4,9 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **left_click_count** | **Integer** | click count (left side) | [optional] |
7
8
  | **left_click_count_formatted** | **String** | click count formatted (left side) | [optional] |
8
- | **left_conversion_count** | **Integer** | click count (left side) | [optional] |
9
+ | **left_conversion_count** | **Integer** | conversion count (left/default side) | [optional] |
9
10
  | **left_conversion_count_formatted** | **String** | conversion count formatted (left/default side) | [optional] |
10
11
  | **left_customer_count** | **Integer** | customer count (left/default side) | [optional] |
11
12
  | **left_customer_count_formatted** | **String** | customer count formatted (left/default side) | [optional] |
@@ -40,6 +41,7 @@
40
41
  require 'ultracart_api'
41
42
 
42
43
  instance = UltracartClient::EmailStepStat.new(
44
+ left_click_count: null,
43
45
  left_click_count_formatted: null,
44
46
  left_conversion_count: null,
45
47
  left_conversion_count_formatted: null,
@@ -15,10 +15,13 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class EmailStepStat
18
+ # click count (left side)
19
+ attr_accessor :left_click_count
20
+
18
21
  # click count formatted (left side)
19
22
  attr_accessor :left_click_count_formatted
20
23
 
21
- # click count (left side)
24
+ # conversion count (left/default side)
22
25
  attr_accessor :left_conversion_count
23
26
 
24
27
  # conversion count formatted (left/default side)
@@ -105,6 +108,7 @@ module UltracartClient
105
108
  # Attribute mapping from ruby-style variable name to JSON key.
106
109
  def self.attribute_map
107
110
  {
111
+ :'left_click_count' => :'left_click_count',
108
112
  :'left_click_count_formatted' => :'left_click_count_formatted',
109
113
  :'left_conversion_count' => :'left_conversion_count',
110
114
  :'left_conversion_count_formatted' => :'left_conversion_count_formatted',
@@ -145,6 +149,7 @@ module UltracartClient
145
149
  # Attribute type mapping.
146
150
  def self.openapi_types
147
151
  {
152
+ :'left_click_count' => :'Integer',
148
153
  :'left_click_count_formatted' => :'String',
149
154
  :'left_conversion_count' => :'Integer',
150
155
  :'left_conversion_count_formatted' => :'String',
@@ -198,6 +203,10 @@ module UltracartClient
198
203
  h[k.to_sym] = v
199
204
  }
200
205
 
206
+ if attributes.key?(:'left_click_count')
207
+ self.left_click_count = attributes[:'left_click_count']
208
+ end
209
+
201
210
  if attributes.key?(:'left_click_count_formatted')
202
211
  self.left_click_count_formatted = attributes[:'left_click_count_formatted']
203
212
  end
@@ -333,6 +342,7 @@ module UltracartClient
333
342
  def ==(o)
334
343
  return true if self.equal?(o)
335
344
  self.class == o.class &&
345
+ left_click_count == o.left_click_count &&
336
346
  left_click_count_formatted == o.left_click_count_formatted &&
337
347
  left_conversion_count == o.left_conversion_count &&
338
348
  left_conversion_count_formatted == o.left_conversion_count_formatted &&
@@ -373,7 +383,7 @@ module UltracartClient
373
383
  # Calculates hash code according to all attributes.
374
384
  # @return [Integer] Hash code
375
385
  def hash
376
- [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
386
+ [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
377
387
  end
378
388
 
379
389
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.76.rc'
14
+ VERSION = '4.0.77.rc'
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: 4.0.76.rc
4
+ version: 4.0.77.rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart