ultracart_api 3.2.8 → 3.2.9

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: 31e2fdfbfd20df01153031b8ddb15e7e52e3067e5363d2570cabf9c1b9a13a4f
4
- data.tar.gz: a56d611f5a9dce16aea40a3d52870d23ef1fc440325f734188edff0d517c393f
3
+ metadata.gz: b6518eb59013764e7385417e9aa2bab90e1b1b3c20a755814435c8995e4ed2a3
4
+ data.tar.gz: c98b102b1be7f95cd94f78b49aa24c42a7dfdd348e1ab83ff826e9046ec8b9b1
5
5
  SHA512:
6
- metadata.gz: 7a58b429464a46a5816b9b33109794ab1e188e48eee3cdcdef7d3395dc7c150d2d611699d5f84cd122d4a637c8050b3a2db2a2334bb476e749e3d46396ebec35
7
- data.tar.gz: f4f39efa0797bb513ef3bad3e69009e82df1b21c2cd5e433808789b00129862d89e05d01494fdadd1455e95cc0f7d0baa928d7a5df855c726998ab5c78527c3f
6
+ metadata.gz: caa996b5aad971ff1a16bd2fac06b2de5a9a1d6bec4010c214d27165d8540378e8462bc1e26b089e2395920c6ae61371aa938b07b03eaf69f6e8983156e7f8bb
7
+ data.tar.gz: 1863e1c8d4e1538a9c6ede97c91e279b7ee70da457ec8f38b1774395191d6362edf1c009fa415a87de7c16acfb380229edf4f38426de9b8765079b510a8bd434
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.2.8
10
+ - Package version: 3.2.9
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.2.8.gem
27
+ gem install ./ultracart_api-3.2.9.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.2.8.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.2.9.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.2.8'
35
+ gem 'ultracart_api', '~> 3.2.9'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1032,6 +1032,7 @@ Not every change is committed to every SDK.
1032
1032
 
1033
1033
  | Version | Date | Comments |
1034
1034
  | --: | :-: | --- |
1035
+ | 3.2.9 | 07/07/2021 | screen recording - provide cost per thousand and retention interval |
1035
1036
  | 3.2.8 | 07/06/2021 | intgeration logs - min max log date/time retured in filter values |
1036
1037
  | 3.2.7 | 07/05/2021 | integration logger bug fixes |
1037
1038
  | 3.2.6 | 06/25/2021 | integration log: added logger name |
@@ -3,7 +3,9 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **cost_per_thousand** | **Float** | Cost per one thousand sessions | [optional]
6
7
  **enabled** | **BOOLEAN** | | [optional]
8
+ **retention_interval** | **String** | How long screen recording data is retained | [optional]
7
9
  **sessions_current_billing_period** | **Integer** | | [optional]
8
10
  **sessions_last_billing_period** | **Integer** | | [optional]
9
11
  **sessions_trial_billing_period** | **Integer** | | [optional]
@@ -14,8 +14,14 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ScreenRecordingSettings
17
+ # Cost per one thousand sessions
18
+ attr_accessor :cost_per_thousand
19
+
17
20
  attr_accessor :enabled
18
21
 
22
+ # How long screen recording data is retained
23
+ attr_accessor :retention_interval
24
+
19
25
  attr_accessor :sessions_current_billing_period
20
26
 
21
27
  attr_accessor :sessions_last_billing_period
@@ -29,7 +35,9 @@ module UltracartClient
29
35
  # Attribute mapping from ruby-style variable name to JSON key.
30
36
  def self.attribute_map
31
37
  {
38
+ :'cost_per_thousand' => :'cost_per_thousand',
32
39
  :'enabled' => :'enabled',
40
+ :'retention_interval' => :'retention_interval',
33
41
  :'sessions_current_billing_period' => :'sessions_current_billing_period',
34
42
  :'sessions_last_billing_period' => :'sessions_last_billing_period',
35
43
  :'sessions_trial_billing_period' => :'sessions_trial_billing_period',
@@ -41,7 +49,9 @@ module UltracartClient
41
49
  # Attribute type mapping.
42
50
  def self.swagger_types
43
51
  {
52
+ :'cost_per_thousand' => :'Float',
44
53
  :'enabled' => :'BOOLEAN',
54
+ :'retention_interval' => :'String',
45
55
  :'sessions_current_billing_period' => :'Integer',
46
56
  :'sessions_last_billing_period' => :'Integer',
47
57
  :'sessions_trial_billing_period' => :'Integer',
@@ -58,10 +68,18 @@ module UltracartClient
58
68
  # convert string to symbol for hash key
59
69
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
60
70
 
71
+ if attributes.has_key?(:'cost_per_thousand')
72
+ self.cost_per_thousand = attributes[:'cost_per_thousand']
73
+ end
74
+
61
75
  if attributes.has_key?(:'enabled')
62
76
  self.enabled = attributes[:'enabled']
63
77
  end
64
78
 
79
+ if attributes.has_key?(:'retention_interval')
80
+ self.retention_interval = attributes[:'retention_interval']
81
+ end
82
+
65
83
  if attributes.has_key?(:'sessions_current_billing_period')
66
84
  self.sessions_current_billing_period = attributes[:'sessions_current_billing_period']
67
85
  end
@@ -101,7 +119,9 @@ module UltracartClient
101
119
  def ==(o)
102
120
  return true if self.equal?(o)
103
121
  self.class == o.class &&
122
+ cost_per_thousand == o.cost_per_thousand &&
104
123
  enabled == o.enabled &&
124
+ retention_interval == o.retention_interval &&
105
125
  sessions_current_billing_period == o.sessions_current_billing_period &&
106
126
  sessions_last_billing_period == o.sessions_last_billing_period &&
107
127
  sessions_trial_billing_period == o.sessions_trial_billing_period &&
@@ -118,7 +138,7 @@ module UltracartClient
118
138
  # Calculates hash code according to all attributes.
119
139
  # @return [Fixnum] Hash code
120
140
  def hash
121
- [enabled, sessions_current_billing_period, sessions_last_billing_period, sessions_trial_billing_period, trial_expiration, trial_expired].hash
141
+ [cost_per_thousand, enabled, retention_interval, sessions_current_billing_period, sessions_last_billing_period, sessions_trial_billing_period, trial_expiration, trial_expired].hash
122
142
  end
123
143
 
124
144
  # 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.2.8'
14
+ VERSION = '3.2.9'
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.8
4
+ version: 3.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-06 00:00:00.000000000 Z
11
+ date: 2021-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus