ultracart_api 3.3.0 → 3.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +62 -4
  3. data/docs/ConfigurationApi.md +756 -0
  4. data/docs/DelayAutoOrdersResponse.md +12 -0
  5. data/docs/IntegrationLogApi.md +51 -0
  6. data/docs/IntegrationLogSummary.md +16 -0
  7. data/docs/IntegrationLogSummaryQueryRequest.md +9 -0
  8. data/docs/IntegrationLogSummaryQueryResponse.md +12 -0
  9. data/docs/PaymentsConfiguration.md +23 -0
  10. data/docs/PaymentsConfigurationAffirm.md +15 -0
  11. data/docs/PaymentsConfigurationAmazon.md +15 -0
  12. data/docs/PaymentsConfigurationCOD.md +13 -0
  13. data/docs/PaymentsConfigurationCash.md +9 -0
  14. data/docs/PaymentsConfigurationCheck.md +25 -0
  15. data/docs/PaymentsConfigurationCreditCard.md +16 -0
  16. data/docs/PaymentsConfigurationLoanHero.md +12 -0
  17. data/docs/PaymentsConfigurationPayPal.md +36 -0
  18. data/docs/PaymentsConfigurationPurchaseOrder.md +11 -0
  19. data/docs/PaymentsConfigurationQuoteRequest.md +10 -0
  20. data/docs/PaymentsConfigurationResponse.md +12 -0
  21. data/docs/PaymentsConfigurationRestrictions.md +19 -0
  22. data/docs/PaymentsConfigurationSezzle.md +15 -0
  23. data/docs/PaymentsConfigurationWePay.md +35 -0
  24. data/docs/PaymentsConfigurationWireTransfer.md +18 -0
  25. data/docs/PaymentsThemeTransactionType.md +10 -0
  26. data/docs/PaymentsWepayEnroll.md +22 -0
  27. data/docs/RotatingTransactionGateway.md +50 -0
  28. data/docs/RotatingTransactionGatewaysResponse.md +12 -0
  29. data/docs/RtgCurrency.md +10 -0
  30. data/docs/RtgDayOfMonthRestriction.md +9 -0
  31. data/docs/RtgDayOfWeekRestriction.md +10 -0
  32. data/docs/RtgSummary.md +14 -0
  33. data/docs/RtgSummaryGateway.md +24 -0
  34. data/docs/RtgThemeRestriction.md +10 -0
  35. data/docs/ScreenRecordingPageViewEvent.md +1 -0
  36. data/docs/SingleSignOnAuthorizeResponse.md +9 -0
  37. data/docs/SingleSignOnTokenResponse.md +10 -0
  38. data/docs/SsoApi.md +4 -4
  39. data/docs/StripeConnectResponse.md +12 -0
  40. data/docs/TransactionGateway.md +71 -0
  41. data/docs/TransactionGatewaysRequest.md +10 -0
  42. data/docs/TransactionGatewaysResponse.md +12 -0
  43. data/lib/ultracart_api.rb +37 -0
  44. data/lib/ultracart_api/api/configuration_api.rb +843 -0
  45. data/lib/ultracart_api/api/integration_log_api.rb +55 -0
  46. data/lib/ultracart_api/api/sso_api.rb +6 -6
  47. data/lib/ultracart_api/models/delay_auto_orders_response.rb +221 -0
  48. data/lib/ultracart_api/models/integration_log_summary.rb +256 -0
  49. data/lib/ultracart_api/models/integration_log_summary_query_request.rb +195 -0
  50. data/lib/ultracart_api/models/integration_log_summary_query_response.rb +223 -0
  51. data/lib/ultracart_api/models/payments_configuration.rb +319 -0
  52. data/lib/ultracart_api/models/payments_configuration_affirm.rb +247 -0
  53. data/lib/ultracart_api/models/payments_configuration_amazon.rb +247 -0
  54. data/lib/ultracart_api/models/payments_configuration_cash.rb +193 -0
  55. data/lib/ultracart_api/models/payments_configuration_check.rb +337 -0
  56. data/lib/ultracart_api/models/payments_configuration_cod.rb +229 -0
  57. data/lib/ultracart_api/models/payments_configuration_credit_card.rb +256 -0
  58. data/lib/ultracart_api/models/payments_configuration_loan_hero.rb +220 -0
  59. data/lib/ultracart_api/models/payments_configuration_pay_pal.rb +436 -0
  60. data/lib/ultracart_api/models/payments_configuration_purchase_order.rb +211 -0
  61. data/lib/ultracart_api/models/payments_configuration_quote_request.rb +202 -0
  62. data/lib/ultracart_api/models/payments_configuration_response.rb +221 -0
  63. data/lib/ultracart_api/models/payments_configuration_restrictions.rb +283 -0
  64. data/lib/ultracart_api/models/payments_configuration_sezzle.rb +247 -0
  65. data/lib/ultracart_api/models/payments_configuration_we_pay.rb +427 -0
  66. data/lib/ultracart_api/models/payments_configuration_wire_transfer.rb +274 -0
  67. data/lib/ultracart_api/models/payments_theme_transaction_type.rb +239 -0
  68. data/lib/ultracart_api/models/payments_wepay_enroll.rb +310 -0
  69. data/lib/ultracart_api/models/rotating_transaction_gateway.rb +665 -0
  70. data/lib/ultracart_api/models/rotating_transaction_gateways_response.rb +223 -0
  71. data/lib/ultracart_api/models/rtg_currency.rb +205 -0
  72. data/lib/ultracart_api/models/rtg_day_of_month_restriction.rb +195 -0
  73. data/lib/ultracart_api/models/rtg_day_of_week_restriction.rb +205 -0
  74. data/lib/ultracart_api/models/rtg_summary.rb +240 -0
  75. data/lib/ultracart_api/models/rtg_summary_gateway.rb +329 -0
  76. data/lib/ultracart_api/models/rtg_theme_restriction.rb +239 -0
  77. data/lib/ultracart_api/models/screen_recording_page_view_event.rb +10 -1
  78. data/lib/ultracart_api/models/single_sign_on_authorize_response.rb +195 -0
  79. data/lib/ultracart_api/models/single_sign_on_token_response.rb +205 -0
  80. data/lib/ultracart_api/models/stripe_connect_response.rb +221 -0
  81. data/lib/ultracart_api/models/transaction_gateway.rb +823 -0
  82. data/lib/ultracart_api/models/transaction_gateways_request.rb +242 -0
  83. data/lib/ultracart_api/models/transaction_gateways_response.rb +223 -0
  84. data/lib/ultracart_api/version.rb +1 -1
  85. metadata +76 -2
@@ -0,0 +1,239 @@
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 RtgThemeRestriction
17
+ # Any restriction for this theme
18
+ attr_accessor :restriction
19
+
20
+ # The server name for this theme. This will not be populated for legacy (ancient) themes
21
+ attr_accessor :storefront_host_name
22
+
23
+ # Human friendly short code for this theme
24
+ attr_accessor :theme_code
25
+
26
+ class EnumAttributeValidator
27
+ attr_reader :datatype
28
+ attr_reader :allowable_values
29
+
30
+ def initialize(datatype, allowable_values)
31
+ @allowable_values = allowable_values.map do |value|
32
+ case datatype.to_s
33
+ when /Integer/i
34
+ value.to_i
35
+ when /Float/i
36
+ value.to_f
37
+ else
38
+ value
39
+ end
40
+ end
41
+ end
42
+
43
+ def valid?(value)
44
+ !value || allowable_values.include?(value)
45
+ end
46
+ end
47
+
48
+ # Attribute mapping from ruby-style variable name to JSON key.
49
+ def self.attribute_map
50
+ {
51
+ :'restriction' => :'restriction',
52
+ :'storefront_host_name' => :'storefront_host_name',
53
+ :'theme_code' => :'theme_code'
54
+ }
55
+ end
56
+
57
+ # Attribute type mapping.
58
+ def self.swagger_types
59
+ {
60
+ :'restriction' => :'String',
61
+ :'storefront_host_name' => :'String',
62
+ :'theme_code' => :'String'
63
+ }
64
+ end
65
+
66
+ # Initializes the object
67
+ # @param [Hash] attributes Model attributes in the form of hash
68
+ def initialize(attributes = {})
69
+ return unless attributes.is_a?(Hash)
70
+
71
+ # convert string to symbol for hash key
72
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
73
+
74
+ if attributes.has_key?(:'restriction')
75
+ self.restriction = attributes[:'restriction']
76
+ end
77
+
78
+ if attributes.has_key?(:'storefront_host_name')
79
+ self.storefront_host_name = attributes[:'storefront_host_name']
80
+ end
81
+
82
+ if attributes.has_key?(:'theme_code')
83
+ self.theme_code = attributes[:'theme_code']
84
+ end
85
+ end
86
+
87
+ # Show invalid properties with the reasons. Usually used together with valid?
88
+ # @return Array for valid properties with the reasons
89
+ def list_invalid_properties
90
+ invalid_properties = Array.new
91
+ invalid_properties
92
+ end
93
+
94
+ # Check to see if the all the properties in the model are valid
95
+ # @return true if the model is valid
96
+ def valid?
97
+ restriction_validator = EnumAttributeValidator.new('String', ['invalid', 'valid', 'validOnly'])
98
+ return false unless restriction_validator.valid?(@restriction)
99
+ true
100
+ end
101
+
102
+ # Custom attribute writer method checking allowed values (enum).
103
+ # @param [Object] restriction Object to be assigned
104
+ def restriction=(restriction)
105
+ validator = EnumAttributeValidator.new('String', ['invalid', 'valid', 'validOnly'])
106
+ unless validator.valid?(restriction)
107
+ fail ArgumentError, 'invalid value for "restriction", must be one of #{validator.allowable_values}.'
108
+ end
109
+ @restriction = restriction
110
+ end
111
+
112
+ # Checks equality by comparing each attribute.
113
+ # @param [Object] Object to be compared
114
+ def ==(o)
115
+ return true if self.equal?(o)
116
+ self.class == o.class &&
117
+ restriction == o.restriction &&
118
+ storefront_host_name == o.storefront_host_name &&
119
+ theme_code == o.theme_code
120
+ end
121
+
122
+ # @see the `==` method
123
+ # @param [Object] Object to be compared
124
+ def eql?(o)
125
+ self == o
126
+ end
127
+
128
+ # Calculates hash code according to all attributes.
129
+ # @return [Fixnum] Hash code
130
+ def hash
131
+ [restriction, storefront_host_name, theme_code].hash
132
+ end
133
+
134
+ # Builds the object from hash
135
+ # @param [Hash] attributes Model attributes in the form of hash
136
+ # @return [Object] Returns the model itself
137
+ def build_from_hash(attributes)
138
+ return nil unless attributes.is_a?(Hash)
139
+ self.class.swagger_types.each_pair do |key, type|
140
+ if type =~ /\AArray<(.*)>/i
141
+ # check to ensure the input is an array given that the attribute
142
+ # is documented as an array but the input is not
143
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
144
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
145
+ end
146
+ elsif !attributes[self.class.attribute_map[key]].nil?
147
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
148
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
149
+ end
150
+
151
+ self
152
+ end
153
+
154
+ # Deserializes the data based on type
155
+ # @param string type Data type
156
+ # @param string value Value to be deserialized
157
+ # @return [Object] Deserialized data
158
+ def _deserialize(type, value)
159
+ case type.to_sym
160
+ when :DateTime
161
+ DateTime.parse(value)
162
+ when :Date
163
+ Date.parse(value)
164
+ when :String
165
+ value.to_s
166
+ when :Integer
167
+ value.to_i
168
+ when :Float
169
+ value.to_f
170
+ when :BOOLEAN
171
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
172
+ true
173
+ else
174
+ false
175
+ end
176
+ when :Object
177
+ # generic object (usually a Hash), return directly
178
+ value
179
+ when /\AArray<(?<inner_type>.+)>\z/
180
+ inner_type = Regexp.last_match[:inner_type]
181
+ value.map { |v| _deserialize(inner_type, v) }
182
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
183
+ k_type = Regexp.last_match[:k_type]
184
+ v_type = Regexp.last_match[:v_type]
185
+ {}.tap do |hash|
186
+ value.each do |k, v|
187
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
188
+ end
189
+ end
190
+ else # model
191
+ temp_model = UltracartClient.const_get(type).new
192
+ temp_model.build_from_hash(value)
193
+ end
194
+ end
195
+
196
+ # Returns the string representation of the object
197
+ # @return [String] String presentation of the object
198
+ def to_s
199
+ to_hash.to_s
200
+ end
201
+
202
+ # to_body is an alias to to_hash (backward compatibility)
203
+ # @return [Hash] Returns the object in the form of hash
204
+ def to_body
205
+ to_hash
206
+ end
207
+
208
+ # Returns the object in the form of hash
209
+ # @return [Hash] Returns the object in the form of hash
210
+ def to_hash
211
+ hash = {}
212
+ self.class.attribute_map.each_pair do |attr, param|
213
+ value = self.send(attr)
214
+ next if value.nil?
215
+ hash[param] = _to_hash(value)
216
+ end
217
+ hash
218
+ end
219
+
220
+ # Outputs non-array value in the form of hash
221
+ # For object, use to_hash. Otherwise, just return the value
222
+ # @param [Object] value Any valid value
223
+ # @return [Hash] Returns the value in the form of hash
224
+ def _to_hash(value)
225
+ if value.is_a?(Array)
226
+ value.compact.map { |v| _to_hash(v) }
227
+ elsif value.is_a?(Hash)
228
+ {}.tap do |hash|
229
+ value.each { |k, v| hash[k] = _to_hash(v) }
230
+ end
231
+ elsif value.respond_to? :to_hash
232
+ value.to_hash
233
+ else
234
+ value
235
+ end
236
+ end
237
+
238
+ end
239
+ end
@@ -20,6 +20,8 @@ module UltracartClient
20
20
 
21
21
  attr_accessor :prior_page_view
22
22
 
23
+ attr_accessor :sub_text
24
+
23
25
  # Timestamp of the event
24
26
  attr_accessor :timestamp
25
27
 
@@ -31,6 +33,7 @@ module UltracartClient
31
33
  :'name' => :'name',
32
34
  :'params' => :'params',
33
35
  :'prior_page_view' => :'prior_page_view',
36
+ :'sub_text' => :'sub_text',
34
37
  :'timestamp' => :'timestamp',
35
38
  :'ts' => :'ts'
36
39
  }
@@ -42,6 +45,7 @@ module UltracartClient
42
45
  :'name' => :'String',
43
46
  :'params' => :'Array<ScreenRecordingPageViewEventParameter>',
44
47
  :'prior_page_view' => :'BOOLEAN',
48
+ :'sub_text' => :'String',
45
49
  :'timestamp' => :'String',
46
50
  :'ts' => :'Integer'
47
51
  }
@@ -69,6 +73,10 @@ module UltracartClient
69
73
  self.prior_page_view = attributes[:'prior_page_view']
70
74
  end
71
75
 
76
+ if attributes.has_key?(:'sub_text')
77
+ self.sub_text = attributes[:'sub_text']
78
+ end
79
+
72
80
  if attributes.has_key?(:'timestamp')
73
81
  self.timestamp = attributes[:'timestamp']
74
82
  end
@@ -99,6 +107,7 @@ module UltracartClient
99
107
  name == o.name &&
100
108
  params == o.params &&
101
109
  prior_page_view == o.prior_page_view &&
110
+ sub_text == o.sub_text &&
102
111
  timestamp == o.timestamp &&
103
112
  ts == o.ts
104
113
  end
@@ -112,7 +121,7 @@ module UltracartClient
112
121
  # Calculates hash code according to all attributes.
113
122
  # @return [Fixnum] Hash code
114
123
  def hash
115
- [name, params, prior_page_view, timestamp, ts].hash
124
+ [name, params, prior_page_view, sub_text, timestamp, ts].hash
116
125
  end
117
126
 
118
127
  # Builds the object from hash
@@ -0,0 +1,195 @@
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 SingleSignOnAuthorizeResponse
17
+ # Expiration date/time after which the single sign-on login operation will have timed out
18
+ attr_accessor :expiration_dts
19
+
20
+ # The URL that you should redirect the customer's browser to. This URL will begin the login process.
21
+ attr_accessor :login_url
22
+
23
+ # Attribute mapping from ruby-style variable name to JSON key.
24
+ def self.attribute_map
25
+ {
26
+ :'expiration_dts' => :'expiration_dts',
27
+ :'login_url' => :'login_url'
28
+ }
29
+ end
30
+
31
+ # Attribute type mapping.
32
+ def self.swagger_types
33
+ {
34
+ :'expiration_dts' => :'String',
35
+ :'login_url' => :'String'
36
+ }
37
+ end
38
+
39
+ # Initializes the object
40
+ # @param [Hash] attributes Model attributes in the form of hash
41
+ def initialize(attributes = {})
42
+ return unless attributes.is_a?(Hash)
43
+
44
+ # convert string to symbol for hash key
45
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
46
+
47
+ if attributes.has_key?(:'expiration_dts')
48
+ self.expiration_dts = attributes[:'expiration_dts']
49
+ end
50
+
51
+ if attributes.has_key?(:'login_url')
52
+ self.login_url = attributes[:'login_url']
53
+ end
54
+ end
55
+
56
+ # Show invalid properties with the reasons. Usually used together with valid?
57
+ # @return Array for valid properties with the reasons
58
+ def list_invalid_properties
59
+ invalid_properties = Array.new
60
+ invalid_properties
61
+ end
62
+
63
+ # Check to see if the all the properties in the model are valid
64
+ # @return true if the model is valid
65
+ def valid?
66
+ true
67
+ end
68
+
69
+ # Checks equality by comparing each attribute.
70
+ # @param [Object] Object to be compared
71
+ def ==(o)
72
+ return true if self.equal?(o)
73
+ self.class == o.class &&
74
+ expiration_dts == o.expiration_dts &&
75
+ login_url == o.login_url
76
+ end
77
+
78
+ # @see the `==` method
79
+ # @param [Object] Object to be compared
80
+ def eql?(o)
81
+ self == o
82
+ end
83
+
84
+ # Calculates hash code according to all attributes.
85
+ # @return [Fixnum] Hash code
86
+ def hash
87
+ [expiration_dts, login_url].hash
88
+ end
89
+
90
+ # Builds the object from hash
91
+ # @param [Hash] attributes Model attributes in the form of hash
92
+ # @return [Object] Returns the model itself
93
+ def build_from_hash(attributes)
94
+ return nil unless attributes.is_a?(Hash)
95
+ self.class.swagger_types.each_pair do |key, type|
96
+ if type =~ /\AArray<(.*)>/i
97
+ # check to ensure the input is an array given that the attribute
98
+ # is documented as an array but the input is not
99
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
100
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
101
+ end
102
+ elsif !attributes[self.class.attribute_map[key]].nil?
103
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
104
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
105
+ end
106
+
107
+ self
108
+ end
109
+
110
+ # Deserializes the data based on type
111
+ # @param string type Data type
112
+ # @param string value Value to be deserialized
113
+ # @return [Object] Deserialized data
114
+ def _deserialize(type, value)
115
+ case type.to_sym
116
+ when :DateTime
117
+ DateTime.parse(value)
118
+ when :Date
119
+ Date.parse(value)
120
+ when :String
121
+ value.to_s
122
+ when :Integer
123
+ value.to_i
124
+ when :Float
125
+ value.to_f
126
+ when :BOOLEAN
127
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
128
+ true
129
+ else
130
+ false
131
+ end
132
+ when :Object
133
+ # generic object (usually a Hash), return directly
134
+ value
135
+ when /\AArray<(?<inner_type>.+)>\z/
136
+ inner_type = Regexp.last_match[:inner_type]
137
+ value.map { |v| _deserialize(inner_type, v) }
138
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
139
+ k_type = Regexp.last_match[:k_type]
140
+ v_type = Regexp.last_match[:v_type]
141
+ {}.tap do |hash|
142
+ value.each do |k, v|
143
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
144
+ end
145
+ end
146
+ else # model
147
+ temp_model = UltracartClient.const_get(type).new
148
+ temp_model.build_from_hash(value)
149
+ end
150
+ end
151
+
152
+ # Returns the string representation of the object
153
+ # @return [String] String presentation of the object
154
+ def to_s
155
+ to_hash.to_s
156
+ end
157
+
158
+ # to_body is an alias to to_hash (backward compatibility)
159
+ # @return [Hash] Returns the object in the form of hash
160
+ def to_body
161
+ to_hash
162
+ end
163
+
164
+ # Returns the object in the form of hash
165
+ # @return [Hash] Returns the object in the form of hash
166
+ def to_hash
167
+ hash = {}
168
+ self.class.attribute_map.each_pair do |attr, param|
169
+ value = self.send(attr)
170
+ next if value.nil?
171
+ hash[param] = _to_hash(value)
172
+ end
173
+ hash
174
+ end
175
+
176
+ # Outputs non-array value in the form of hash
177
+ # For object, use to_hash. Otherwise, just return the value
178
+ # @param [Object] value Any valid value
179
+ # @return [Hash] Returns the value in the form of hash
180
+ def _to_hash(value)
181
+ if value.is_a?(Array)
182
+ value.compact.map { |v| _to_hash(v) }
183
+ elsif value.is_a?(Hash)
184
+ {}.tap do |hash|
185
+ value.each { |k, v| hash[k] = _to_hash(v) }
186
+ end
187
+ elsif value.respond_to? :to_hash
188
+ value.to_hash
189
+ else
190
+ value
191
+ end
192
+ end
193
+
194
+ end
195
+ end