ultracart_api 3.1.6 → 3.1.7

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: e9b67dd2df18641594c68fa7ee1cbbc179340019de0f069d5d08e706b3e4736b
4
- data.tar.gz: 539093bfe2736cfe497f7a61d83d07bdcae6148d534d4a579e092b74a2067018
3
+ metadata.gz: ba17b237b52de42f4a1635212e24c25b4346a897c64693981b6c9cc74c017e14
4
+ data.tar.gz: '08eafd57235df813717f19f0052cfd63e3fd30f2f8e1518e0390bedf7b9b7b63'
5
5
  SHA512:
6
- metadata.gz: aefe0cd22169ffce3277c99d9245a0cd8141976d84a2737893d3b2074d5810b2b323f00af80234842e762314c2d335d4859dae4b81a1db0e0dfb4d1f189e05a0
7
- data.tar.gz: 17bace8885d50b0a38671ba7a585a41894b766b5efb623ba40a7e1fac1a30202fda7b62e840eac1183d4d9143bfcebdfd4353c7862d8630aefd1bf02c9a25f03
6
+ metadata.gz: a7b252ef9d9318b346195ee5f052a576926fb2133c9782c2ade0ae246886d648f6b30e1ca980d5cdaabcd4cc4bf644c5f3a03e14731de9fd8fb524de43b99add
7
+ data.tar.gz: 0e1cc43bba38835880863c103b9bf7f645e952d8ae18a0f5ff4ff87779dc1ff0f9d69b24594baa1de1b177f3895158aa9f97a118acd000b30286ff83222c442d
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.1.6
10
+ - Package version: 3.1.7
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.1.6.gem
27
+ gem install ./ultracart_api-3.1.7.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.1.6.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.1.7.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.1.6'
35
+ gem 'ultracart_api', '~> 3.1.7'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -492,6 +492,7 @@ Class | Method | HTTP request | Description
492
492
  - [UltracartClient::CouponAmountOffSubtotalFreeShippingWithPurchase](docs/CouponAmountOffSubtotalFreeShippingWithPurchase.md)
493
493
  - [UltracartClient::CouponAmountOffSubtotalWithBlockPurchase](docs/CouponAmountOffSubtotalWithBlockPurchase.md)
494
494
  - [UltracartClient::CouponAmountOffSubtotalWithItemsPurchase](docs/CouponAmountOffSubtotalWithItemsPurchase.md)
495
+ - [UltracartClient::CouponAmountOffSubtotalWithPurchase](docs/CouponAmountOffSubtotalWithPurchase.md)
495
496
  - [UltracartClient::CouponAutoApplyCondition](docs/CouponAutoApplyCondition.md)
496
497
  - [UltracartClient::CouponAutoApplyConditions](docs/CouponAutoApplyConditions.md)
497
498
  - [UltracartClient::CouponAutomaticallyApplyCouponCodes](docs/CouponAutomaticallyApplyCouponCodes.md)
data/docs/Coupon.md CHANGED
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **amount_off_subtotal_and_shipping** | [**CouponAmountOffSubtotalAndShipping**](CouponAmountOffSubtotalAndShipping.md) | | [optional]
14
14
  **amount_off_subtotal_with_block_purchase** | [**CouponAmountOffSubtotalWithBlockPurchase**](CouponAmountOffSubtotalWithBlockPurchase.md) | | [optional]
15
15
  **amount_off_subtotal_with_items_purchase** | [**CouponAmountOffSubtotalWithItemsPurchase**](CouponAmountOffSubtotalWithItemsPurchase.md) | | [optional]
16
+ **amount_off_subtotal_with_purchase** | [**CouponAmountOffSubtotalWithPurchase**](CouponAmountOffSubtotalWithPurchase.md) | | [optional]
16
17
  **automatically_apply_coupon_codes** | [**CouponAutomaticallyApplyCouponCodes**](CouponAutomaticallyApplyCouponCodes.md) | | [optional]
17
18
  **buy_one_get_one** | [**CouponBuyOneGetOneLimit**](CouponBuyOneGetOneLimit.md) | | [optional]
18
19
  **calculated_description** | **String** | Calculated description displayed to the customer if no description is specified. | [optional]
@@ -0,0 +1,10 @@
1
+ # UltracartClient::CouponAmountOffSubtotalWithPurchase
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **currency_code** | **String** | The ISO-4217 three letter currency code the customer is viewing prices in | [optional]
7
+ **discount_amount** | **Float** | The amount of subtotal discount | [optional]
8
+ **purchase_amount** | **Float** | The purchase amount to qualify for subtotal discount and free shipping | [optional]
9
+
10
+
data/lib/ultracart_api.rb CHANGED
@@ -127,6 +127,7 @@ require 'ultracart_api/models/coupon_amount_off_subtotal_and_shipping'
127
127
  require 'ultracart_api/models/coupon_amount_off_subtotal_free_shipping_with_purchase'
128
128
  require 'ultracart_api/models/coupon_amount_off_subtotal_with_block_purchase'
129
129
  require 'ultracart_api/models/coupon_amount_off_subtotal_with_items_purchase'
130
+ require 'ultracart_api/models/coupon_amount_off_subtotal_with_purchase'
130
131
  require 'ultracart_api/models/coupon_auto_apply_condition'
131
132
  require 'ultracart_api/models/coupon_auto_apply_conditions'
132
133
  require 'ultracart_api/models/coupon_automatically_apply_coupon_codes'
@@ -36,6 +36,8 @@ module UltracartClient
36
36
 
37
37
  attr_accessor :amount_off_subtotal_with_items_purchase
38
38
 
39
+ attr_accessor :amount_off_subtotal_with_purchase
40
+
39
41
  attr_accessor :automatically_apply_coupon_codes
40
42
 
41
43
  attr_accessor :buy_one_get_one
@@ -156,6 +158,7 @@ module UltracartClient
156
158
  :'amount_off_subtotal_and_shipping' => :'amount_off_subtotal_and_shipping',
157
159
  :'amount_off_subtotal_with_block_purchase' => :'amount_off_subtotal_with_block_purchase',
158
160
  :'amount_off_subtotal_with_items_purchase' => :'amount_off_subtotal_with_items_purchase',
161
+ :'amount_off_subtotal_with_purchase' => :'amount_off_subtotal_with_purchase',
159
162
  :'automatically_apply_coupon_codes' => :'automatically_apply_coupon_codes',
160
163
  :'buy_one_get_one' => :'buy_one_get_one',
161
164
  :'calculated_description' => :'calculated_description',
@@ -218,6 +221,7 @@ module UltracartClient
218
221
  :'amount_off_subtotal_and_shipping' => :'CouponAmountOffSubtotalAndShipping',
219
222
  :'amount_off_subtotal_with_block_purchase' => :'CouponAmountOffSubtotalWithBlockPurchase',
220
223
  :'amount_off_subtotal_with_items_purchase' => :'CouponAmountOffSubtotalWithItemsPurchase',
224
+ :'amount_off_subtotal_with_purchase' => :'CouponAmountOffSubtotalWithPurchase',
221
225
  :'automatically_apply_coupon_codes' => :'CouponAutomaticallyApplyCouponCodes',
222
226
  :'buy_one_get_one' => :'CouponBuyOneGetOneLimit',
223
227
  :'calculated_description' => :'String',
@@ -315,6 +319,10 @@ module UltracartClient
315
319
  self.amount_off_subtotal_with_items_purchase = attributes[:'amount_off_subtotal_with_items_purchase']
316
320
  end
317
321
 
322
+ if attributes.has_key?(:'amount_off_subtotal_with_purchase')
323
+ self.amount_off_subtotal_with_purchase = attributes[:'amount_off_subtotal_with_purchase']
324
+ end
325
+
318
326
  if attributes.has_key?(:'automatically_apply_coupon_codes')
319
327
  self.automatically_apply_coupon_codes = attributes[:'automatically_apply_coupon_codes']
320
328
  end
@@ -624,6 +632,7 @@ module UltracartClient
624
632
  amount_off_subtotal_and_shipping == o.amount_off_subtotal_and_shipping &&
625
633
  amount_off_subtotal_with_block_purchase == o.amount_off_subtotal_with_block_purchase &&
626
634
  amount_off_subtotal_with_items_purchase == o.amount_off_subtotal_with_items_purchase &&
635
+ amount_off_subtotal_with_purchase == o.amount_off_subtotal_with_purchase &&
627
636
  automatically_apply_coupon_codes == o.automatically_apply_coupon_codes &&
628
637
  buy_one_get_one == o.buy_one_get_one &&
629
638
  calculated_description == o.calculated_description &&
@@ -681,7 +690,7 @@ module UltracartClient
681
690
  # Calculates hash code according to all attributes.
682
691
  # @return [Fixnum] Hash code
683
692
  def hash
684
- [affiliate_oid, allow_multiple_one_time_codes, amount_off_items, amount_off_shipping, amount_off_shipping_with_items_purchase, amount_off_subtotal, amount_off_subtotal_and_free_shipping, amount_off_subtotal_and_shipping, amount_off_subtotal_with_block_purchase, amount_off_subtotal_with_items_purchase, automatically_apply_coupon_codes, buy_one_get_one, calculated_description, can_be_used_with_other_coupons, coupon_oid, coupon_type, description, discount_item_with_item_purchase, discount_items, expiration_dts, free_item_and_shipping_with_subtotal, free_item_with_item_purchase, free_item_with_subtotal, free_items_with_item_purchase, free_items_with_mixmatch_purchase, free_shipping, free_shipping_specific_items, free_shipping_with_items_purchase, free_shipping_with_subtotal, merchant_code, merchant_notes, multiple_amounts_off_items, no_discount, percent_off_item_with_items_quantity_purchase, percent_off_items, percent_off_items_and_free_shipping, percent_off_items_with_items_purchase, percent_off_retail_price_items, percent_off_shipping, percent_off_subtotal, percent_off_subtotal_and_free_shipping, percent_off_subtotal_limit, percent_off_subtotal_with_items_purchase, percent_off_subtotal_with_subtotal, quickbooks_code, restrict_by_postal_codes, restrict_by_screen_branding_theme_codes, restrict_by_storefronts, start_dts, super_coupon, tiered_amount_off_item, tiered_amount_off_subtotal, tiered_percent_off_items, tiered_percent_off_shipping, tiered_percent_off_subtotal, usable_by].hash
693
+ [affiliate_oid, allow_multiple_one_time_codes, amount_off_items, amount_off_shipping, amount_off_shipping_with_items_purchase, amount_off_subtotal, amount_off_subtotal_and_free_shipping, amount_off_subtotal_and_shipping, amount_off_subtotal_with_block_purchase, amount_off_subtotal_with_items_purchase, amount_off_subtotal_with_purchase, automatically_apply_coupon_codes, buy_one_get_one, calculated_description, can_be_used_with_other_coupons, coupon_oid, coupon_type, description, discount_item_with_item_purchase, discount_items, expiration_dts, free_item_and_shipping_with_subtotal, free_item_with_item_purchase, free_item_with_subtotal, free_items_with_item_purchase, free_items_with_mixmatch_purchase, free_shipping, free_shipping_specific_items, free_shipping_with_items_purchase, free_shipping_with_subtotal, merchant_code, merchant_notes, multiple_amounts_off_items, no_discount, percent_off_item_with_items_quantity_purchase, percent_off_items, percent_off_items_and_free_shipping, percent_off_items_with_items_purchase, percent_off_retail_price_items, percent_off_shipping, percent_off_subtotal, percent_off_subtotal_and_free_shipping, percent_off_subtotal_limit, percent_off_subtotal_with_items_purchase, percent_off_subtotal_with_subtotal, quickbooks_code, restrict_by_postal_codes, restrict_by_screen_branding_theme_codes, restrict_by_storefronts, start_dts, super_coupon, tiered_amount_off_item, tiered_amount_off_subtotal, tiered_percent_off_items, tiered_percent_off_shipping, tiered_percent_off_subtotal, usable_by].hash
685
694
  end
686
695
 
687
696
  # Builds the object from hash
@@ -0,0 +1,220 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ OpenAPI spec version: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.15-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module UltracartClient
16
+ class CouponAmountOffSubtotalWithPurchase
17
+ # The ISO-4217 three letter currency code the customer is viewing prices in
18
+ attr_accessor :currency_code
19
+
20
+ # The amount of subtotal discount
21
+ attr_accessor :discount_amount
22
+
23
+ # The purchase amount to qualify for subtotal discount and free shipping
24
+ attr_accessor :purchase_amount
25
+
26
+ # Attribute mapping from ruby-style variable name to JSON key.
27
+ def self.attribute_map
28
+ {
29
+ :'currency_code' => :'currency_code',
30
+ :'discount_amount' => :'discount_amount',
31
+ :'purchase_amount' => :'purchase_amount'
32
+ }
33
+ end
34
+
35
+ # Attribute type mapping.
36
+ def self.swagger_types
37
+ {
38
+ :'currency_code' => :'String',
39
+ :'discount_amount' => :'Float',
40
+ :'purchase_amount' => :'Float'
41
+ }
42
+ end
43
+
44
+ # Initializes the object
45
+ # @param [Hash] attributes Model attributes in the form of hash
46
+ def initialize(attributes = {})
47
+ return unless attributes.is_a?(Hash)
48
+
49
+ # convert string to symbol for hash key
50
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
51
+
52
+ if attributes.has_key?(:'currency_code')
53
+ self.currency_code = attributes[:'currency_code']
54
+ end
55
+
56
+ if attributes.has_key?(:'discount_amount')
57
+ self.discount_amount = attributes[:'discount_amount']
58
+ end
59
+
60
+ if attributes.has_key?(:'purchase_amount')
61
+ self.purchase_amount = attributes[:'purchase_amount']
62
+ end
63
+ end
64
+
65
+ # Show invalid properties with the reasons. Usually used together with valid?
66
+ # @return Array for valid properties with the reasons
67
+ def list_invalid_properties
68
+ invalid_properties = Array.new
69
+ if !@currency_code.nil? && @currency_code.to_s.length > 3
70
+ invalid_properties.push('invalid value for "currency_code", the character length must be smaller than or equal to 3.')
71
+ end
72
+
73
+ invalid_properties
74
+ end
75
+
76
+ # Check to see if the all the properties in the model are valid
77
+ # @return true if the model is valid
78
+ def valid?
79
+ return false if !@currency_code.nil? && @currency_code.to_s.length > 3
80
+ true
81
+ end
82
+
83
+ # Custom attribute writer method with validation
84
+ # @param [Object] currency_code Value to be assigned
85
+ def currency_code=(currency_code)
86
+ if !currency_code.nil? && currency_code.to_s.length > 3
87
+ fail ArgumentError, 'invalid value for "currency_code", the character length must be smaller than or equal to 3.'
88
+ end
89
+
90
+ @currency_code = currency_code
91
+ end
92
+
93
+ # Checks equality by comparing each attribute.
94
+ # @param [Object] Object to be compared
95
+ def ==(o)
96
+ return true if self.equal?(o)
97
+ self.class == o.class &&
98
+ currency_code == o.currency_code &&
99
+ discount_amount == o.discount_amount &&
100
+ purchase_amount == o.purchase_amount
101
+ end
102
+
103
+ # @see the `==` method
104
+ # @param [Object] Object to be compared
105
+ def eql?(o)
106
+ self == o
107
+ end
108
+
109
+ # Calculates hash code according to all attributes.
110
+ # @return [Fixnum] Hash code
111
+ def hash
112
+ [currency_code, discount_amount, purchase_amount].hash
113
+ end
114
+
115
+ # Builds the object from hash
116
+ # @param [Hash] attributes Model attributes in the form of hash
117
+ # @return [Object] Returns the model itself
118
+ def build_from_hash(attributes)
119
+ return nil unless attributes.is_a?(Hash)
120
+ self.class.swagger_types.each_pair do |key, type|
121
+ if type =~ /\AArray<(.*)>/i
122
+ # check to ensure the input is an array given that the attribute
123
+ # is documented as an array but the input is not
124
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
125
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
126
+ end
127
+ elsif !attributes[self.class.attribute_map[key]].nil?
128
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
129
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
130
+ end
131
+
132
+ self
133
+ end
134
+
135
+ # Deserializes the data based on type
136
+ # @param string type Data type
137
+ # @param string value Value to be deserialized
138
+ # @return [Object] Deserialized data
139
+ def _deserialize(type, value)
140
+ case type.to_sym
141
+ when :DateTime
142
+ DateTime.parse(value)
143
+ when :Date
144
+ Date.parse(value)
145
+ when :String
146
+ value.to_s
147
+ when :Integer
148
+ value.to_i
149
+ when :Float
150
+ value.to_f
151
+ when :BOOLEAN
152
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
153
+ true
154
+ else
155
+ false
156
+ end
157
+ when :Object
158
+ # generic object (usually a Hash), return directly
159
+ value
160
+ when /\AArray<(?<inner_type>.+)>\z/
161
+ inner_type = Regexp.last_match[:inner_type]
162
+ value.map { |v| _deserialize(inner_type, v) }
163
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
164
+ k_type = Regexp.last_match[:k_type]
165
+ v_type = Regexp.last_match[:v_type]
166
+ {}.tap do |hash|
167
+ value.each do |k, v|
168
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
169
+ end
170
+ end
171
+ else # model
172
+ temp_model = UltracartClient.const_get(type).new
173
+ temp_model.build_from_hash(value)
174
+ end
175
+ end
176
+
177
+ # Returns the string representation of the object
178
+ # @return [String] String presentation of the object
179
+ def to_s
180
+ to_hash.to_s
181
+ end
182
+
183
+ # to_body is an alias to to_hash (backward compatibility)
184
+ # @return [Hash] Returns the object in the form of hash
185
+ def to_body
186
+ to_hash
187
+ end
188
+
189
+ # Returns the object in the form of hash
190
+ # @return [Hash] Returns the object in the form of hash
191
+ def to_hash
192
+ hash = {}
193
+ self.class.attribute_map.each_pair do |attr, param|
194
+ value = self.send(attr)
195
+ next if value.nil?
196
+ hash[param] = _to_hash(value)
197
+ end
198
+ hash
199
+ end
200
+
201
+ # Outputs non-array value in the form of hash
202
+ # For object, use to_hash. Otherwise, just return the value
203
+ # @param [Object] value Any valid value
204
+ # @return [Hash] Returns the value in the form of hash
205
+ def _to_hash(value)
206
+ if value.is_a?(Array)
207
+ value.compact.map { |v| _to_hash(v) }
208
+ elsif value.is_a?(Hash)
209
+ {}.tap do |hash|
210
+ value.each { |k, v| hash[k] = _to_hash(v) }
211
+ end
212
+ elsif value.respond_to? :to_hash
213
+ value.to_hash
214
+ else
215
+ value
216
+ end
217
+ end
218
+
219
+ end
220
+ end
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.1.6'
14
+ VERSION = '3.1.7'
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.1.6
4
+ version: 3.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-12 00:00:00.000000000 Z
11
+ date: 2021-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -315,6 +315,7 @@ files:
315
315
  - docs/CouponAmountOffSubtotalFreeShippingWithPurchase.md
316
316
  - docs/CouponAmountOffSubtotalWithBlockPurchase.md
317
317
  - docs/CouponAmountOffSubtotalWithItemsPurchase.md
318
+ - docs/CouponAmountOffSubtotalWithPurchase.md
318
319
  - docs/CouponApi.md
319
320
  - docs/CouponAutoApplyCondition.md
320
321
  - docs/CouponAutoApplyConditions.md
@@ -905,6 +906,7 @@ files:
905
906
  - lib/ultracart_api/models/coupon_amount_off_subtotal_free_shipping_with_purchase.rb
906
907
  - lib/ultracart_api/models/coupon_amount_off_subtotal_with_block_purchase.rb
907
908
  - lib/ultracart_api/models/coupon_amount_off_subtotal_with_items_purchase.rb
909
+ - lib/ultracart_api/models/coupon_amount_off_subtotal_with_purchase.rb
908
910
  - lib/ultracart_api/models/coupon_auto_apply_condition.rb
909
911
  - lib/ultracart_api/models/coupon_auto_apply_conditions.rb
910
912
  - lib/ultracart_api/models/coupon_automatically_apply_coupon_codes.rb