square_connect 2.0.0 → 2.0.2.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +7 -0
- data/README.md +151 -9
- data/Rakefile +8 -0
- data/docs/Address.md +26 -0
- data/docs/CaptureTransactionRequest.md +11 -0
- data/docs/CaptureTransactionResponse.md +12 -0
- data/docs/Card.md +18 -0
- data/docs/CardBrand.md +20 -0
- data/docs/ChargeRequest.md +22 -0
- data/docs/ChargeResponse.md +13 -0
- data/docs/Checkout.md +20 -0
- data/docs/CheckoutApi.md +62 -0
- data/docs/Country.md +261 -0
- data/docs/CreateCheckoutRequest.md +18 -0
- data/docs/CreateCheckoutResponse.md +13 -0
- data/docs/CreateCustomerCardRequest.md +14 -0
- data/docs/CreateCustomerCardResponse.md +13 -0
- data/docs/CreateCustomerRequest.md +20 -0
- data/docs/CreateCustomerResponse.md +13 -0
- data/docs/CreateOrderRequest.md +13 -0
- data/docs/CreateOrderRequestLineItem.md +14 -0
- data/docs/CreateOrderRequestOrder.md +13 -0
- data/docs/CreateRefundRequest.md +15 -0
- data/docs/CreateRefundResponse.md +13 -0
- data/docs/Currency.md +191 -0
- data/docs/Customer.md +26 -0
- data/docs/CustomerApi.md +267 -0
- data/docs/CustomerCardApi.md +116 -0
- data/docs/CustomerGroupInfo.md +13 -0
- data/docs/CustomerPreferences.md +12 -0
- data/docs/DeleteCustomerCardRequest.md +11 -0
- data/docs/DeleteCustomerCardResponse.md +12 -0
- data/docs/DeleteCustomerRequest.md +11 -0
- data/docs/DeleteCustomerResponse.md +12 -0
- data/docs/Error.md +15 -0
- data/docs/ErrorCategory.md +17 -0
- data/docs/ErrorCode.md +83 -0
- data/docs/ListCustomersRequest.md +12 -0
- data/docs/ListCustomersResponse.md +14 -0
- data/docs/ListLocationsRequest.md +11 -0
- data/docs/ListLocationsResponse.md +13 -0
- data/docs/ListRefundsRequest.md +15 -0
- data/docs/ListRefundsResponse.md +14 -0
- data/docs/ListTransactionsRequest.md +15 -0
- data/docs/ListTransactionsResponse.md +14 -0
- data/docs/Location.md +16 -0
- data/docs/LocationApi.md +56 -0
- data/docs/LocationCapability.md +12 -0
- data/docs/Money.md +13 -0
- data/docs/Order.md +16 -0
- data/docs/OrderLineItem.md +16 -0
- data/docs/Refund.md +20 -0
- data/docs/RefundApi.md +126 -0
- data/docs/RefundStatus.md +15 -0
- data/docs/RetrieveCustomerRequest.md +11 -0
- data/docs/RetrieveCustomerResponse.md +13 -0
- data/docs/RetrieveTransactionRequest.md +11 -0
- data/docs/RetrieveTransactionResponse.md +13 -0
- data/docs/SortOrder.md +13 -0
- data/docs/Tender.md +22 -0
- data/docs/TenderCardDetails.md +14 -0
- data/docs/TenderCardDetailsEntryMethod.md +16 -0
- data/docs/TenderCardDetailsStatus.md +15 -0
- data/docs/TenderCashDetails.md +13 -0
- data/docs/TenderType.md +17 -0
- data/docs/Transaction.md +21 -0
- data/docs/TransactionApi.md +285 -0
- data/docs/TransactionProduct.md +19 -0
- data/docs/UpdateCustomerRequest.md +20 -0
- data/docs/UpdateCustomerResponse.md +13 -0
- data/docs/VoidTransactionRequest.md +11 -0
- data/docs/VoidTransactionResponse.md +12 -0
- data/lib/square_connect.rb +33 -16
- data/lib/square_connect/api/checkout_api.rb +82 -0
- data/lib/square_connect/api/customer_api.rb +121 -162
- data/lib/square_connect/api/customer_card_api.rb +31 -50
- data/lib/square_connect/api/location_api.rb +12 -20
- data/lib/square_connect/api/refund_api.rb +70 -90
- data/lib/square_connect/api/transaction_api.rb +119 -165
- data/lib/square_connect/api_client.rb +64 -17
- data/lib/square_connect/api_error.rb +7 -3
- data/lib/square_connect/configuration.rb +31 -1
- data/lib/square_connect/models/address.rb +149 -78
- data/lib/square_connect/models/capture_transaction_request.rb +176 -0
- data/lib/square_connect/models/capture_transaction_response.rb +54 -26
- data/lib/square_connect/models/card.rb +98 -52
- data/lib/square_connect/models/card_brand.rb +12 -133
- data/lib/square_connect/models/charge_request.rb +106 -67
- data/lib/square_connect/models/charge_response.rb +57 -30
- data/lib/square_connect/models/checkout.rb +266 -0
- data/lib/square_connect/models/country.rb +253 -133
- data/lib/square_connect/models/create_checkout_request.rb +316 -0
- data/lib/square_connect/models/create_checkout_response.rb +198 -0
- data/lib/square_connect/models/create_customer_card_request.rb +66 -35
- data/lib/square_connect/models/create_customer_card_response.rb +58 -31
- data/lib/square_connect/models/create_customer_request.rb +79 -59
- data/lib/square_connect/models/create_customer_response.rb +58 -31
- data/lib/square_connect/models/create_order_request.rb +234 -0
- data/lib/square_connect/models/create_order_request_line_item.rb +268 -0
- data/lib/square_connect/models/create_order_request_order.rb +219 -0
- data/lib/square_connect/models/create_refund_request.rb +79 -39
- data/lib/square_connect/models/create_refund_response.rb +57 -30
- data/lib/square_connect/models/currency.rb +183 -133
- data/lib/square_connect/models/customer.rb +130 -77
- data/lib/square_connect/models/customer_group_info.rb +206 -0
- data/lib/square_connect/models/customer_preferences.rb +186 -0
- data/lib/square_connect/models/delete_customer_card_request.rb +176 -0
- data/lib/square_connect/models/delete_customer_card_response.rb +55 -27
- data/lib/square_connect/models/delete_customer_request.rb +176 -0
- data/lib/square_connect/models/delete_customer_response.rb +55 -27
- data/lib/square_connect/models/error.rb +107 -45
- data/lib/square_connect/models/error_category.rb +9 -133
- data/lib/square_connect/models/error_code.rb +75 -133
- data/lib/square_connect/models/list_customers_request.rb +55 -27
- data/lib/square_connect/models/list_customers_response.rb +61 -35
- data/lib/square_connect/models/list_locations_request.rb +176 -0
- data/lib/square_connect/models/list_locations_response.rb +57 -30
- data/lib/square_connect/models/list_refunds_request.rb +91 -42
- data/lib/square_connect/models/list_refunds_response.rb +59 -33
- data/lib/square_connect/models/list_transactions_request.rb +91 -42
- data/lib/square_connect/models/list_transactions_response.rb +59 -33
- data/lib/square_connect/models/location.rb +86 -41
- data/lib/square_connect/models/location_capability.rb +4 -133
- data/lib/square_connect/models/money.rb +85 -34
- data/lib/square_connect/models/order.rb +228 -0
- data/lib/square_connect/models/order_line_item.rb +226 -0
- data/lib/square_connect/models/refund.rb +138 -59
- data/lib/square_connect/models/refund_status.rb +7 -133
- data/lib/square_connect/models/retrieve_customer_request.rb +176 -0
- data/lib/square_connect/models/retrieve_customer_response.rb +58 -31
- data/lib/square_connect/models/retrieve_transaction_request.rb +176 -0
- data/lib/square_connect/models/retrieve_transaction_response.rb +57 -30
- data/lib/square_connect/models/sort_order.rb +5 -133
- data/lib/square_connect/models/tender.rb +112 -65
- data/lib/square_connect/models/tender_card_details.rb +93 -40
- data/lib/square_connect/models/tender_card_details_entry_method.rb +8 -133
- data/lib/square_connect/models/tender_card_details_status.rb +7 -133
- data/lib/square_connect/models/tender_cash_details.rb +58 -31
- data/lib/square_connect/models/tender_type.rb +9 -133
- data/lib/square_connect/models/transaction.rb +132 -56
- data/lib/square_connect/models/transaction_product.rb +11 -133
- data/lib/square_connect/models/update_customer_request.rb +79 -59
- data/lib/square_connect/models/update_customer_response.rb +58 -31
- data/lib/square_connect/models/void_transaction_request.rb +176 -0
- data/lib/square_connect/models/void_transaction_response.rb +54 -26
- data/lib/square_connect/version.rb +2 -3
- data/spec/api/checkout_api_spec.rb +53 -0
- data/spec/api/customer_api_spec.rb +121 -0
- data/spec/api/customer_card_api_spec.rb +71 -0
- data/spec/api/location_api_spec.rb +58 -0
- data/spec/api/refund_api_spec.rb +75 -0
- data/spec/api/transaction_api_spec.rb +128 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/address_spec.rb +186 -0
- data/spec/models/capture_transaction_request_spec.rb +36 -0
- data/spec/models/capture_transaction_response_spec.rb +46 -0
- data/spec/models/card_brand_spec.rb +36 -0
- data/spec/models/card_spec.rb +106 -0
- data/spec/models/charge_request_spec.rb +146 -0
- data/spec/models/charge_response_spec.rb +56 -0
- data/spec/models/checkout_spec.rb +126 -0
- data/spec/models/country_spec.rb +36 -0
- data/spec/models/create_checkout_request_spec.rb +106 -0
- data/spec/models/create_checkout_response_spec.rb +56 -0
- data/spec/models/create_customer_card_request_spec.rb +66 -0
- data/spec/models/create_customer_card_response_spec.rb +56 -0
- data/spec/models/create_customer_request_spec.rb +126 -0
- data/spec/models/create_customer_response_spec.rb +56 -0
- data/spec/models/create_order_request_line_item_spec.rb +66 -0
- data/spec/models/create_order_request_order_spec.rb +56 -0
- data/spec/models/create_order_request_spec.rb +56 -0
- data/spec/models/create_refund_request_spec.rb +76 -0
- data/spec/models/create_refund_response_spec.rb +56 -0
- data/spec/models/currency_spec.rb +36 -0
- data/spec/models/customer_group_info_spec.rb +56 -0
- data/spec/models/customer_preferences_spec.rb +46 -0
- data/spec/models/customer_spec.rb +186 -0
- data/spec/models/delete_customer_card_request_spec.rb +36 -0
- data/spec/models/delete_customer_card_response_spec.rb +46 -0
- data/spec/models/delete_customer_request_spec.rb +36 -0
- data/spec/models/delete_customer_response_spec.rb +46 -0
- data/spec/models/error_category_spec.rb +36 -0
- data/spec/models/error_code_spec.rb +36 -0
- data/spec/models/error_spec.rb +76 -0
- data/spec/models/list_customers_request_spec.rb +46 -0
- data/spec/models/list_customers_response_spec.rb +66 -0
- data/spec/models/list_locations_request_spec.rb +36 -0
- data/spec/models/list_locations_response_spec.rb +56 -0
- data/spec/models/list_refunds_request_spec.rb +76 -0
- data/spec/models/list_refunds_response_spec.rb +66 -0
- data/spec/models/list_transactions_request_spec.rb +76 -0
- data/spec/models/list_transactions_response_spec.rb +66 -0
- data/spec/models/location_capability_spec.rb +36 -0
- data/spec/models/location_spec.rb +86 -0
- data/spec/models/money_spec.rb +56 -0
- data/spec/models/order_line_item_spec.rb +86 -0
- data/spec/models/order_spec.rb +86 -0
- data/spec/models/refund_spec.rb +126 -0
- data/spec/models/refund_status_spec.rb +36 -0
- data/spec/models/retrieve_customer_request_spec.rb +36 -0
- data/spec/models/retrieve_customer_response_spec.rb +56 -0
- data/spec/models/retrieve_transaction_request_spec.rb +36 -0
- data/spec/models/retrieve_transaction_response_spec.rb +56 -0
- data/spec/models/sort_order_spec.rb +36 -0
- data/spec/models/tender_card_details_entry_method_spec.rb +36 -0
- data/spec/models/tender_card_details_spec.rb +66 -0
- data/spec/models/tender_card_details_status_spec.rb +36 -0
- data/spec/models/tender_cash_details_spec.rb +56 -0
- data/spec/models/tender_spec.rb +146 -0
- data/spec/models/tender_type_spec.rb +36 -0
- data/spec/models/transaction_product_spec.rb +36 -0
- data/spec/models/transaction_spec.rb +136 -0
- data/spec/models/update_customer_request_spec.rb +126 -0
- data/spec/models/update_customer_response_spec.rb +56 -0
- data/spec/models/void_transaction_request_spec.rb +36 -0
- data/spec/models/void_transaction_response_spec.rb +46 -0
- data/spec/spec_helper.rb +115 -0
- data/square_connect.gemspec +22 -11
- data/travis-ci/accounts.enc +0 -0
- metadata +264 -31
@@ -1,37 +1,54 @@
|
|
1
1
|
=begin
|
2
|
-
Square Connect API
|
2
|
+
#Square Connect API
|
3
3
|
|
4
4
|
OpenAPI spec version: 2.0
|
5
5
|
|
6
6
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
7
7
|
|
8
|
-
|
9
8
|
=end
|
10
9
|
|
11
10
|
require 'date'
|
12
11
|
|
13
12
|
module SquareConnect
|
14
|
-
# Represents
|
13
|
+
# Represents additional details of a tender with `type` `CARD` or `SQUARE_GIFT_CARD`
|
15
14
|
class TenderCardDetails
|
16
|
-
# The credit card payment's current state (such as `CAPTURED`)
|
15
|
+
# The credit card payment's current state (such as `AUTHORIZED` or `CAPTURED`). See [TenderCardDetailsStatus](#type-tendercarddetailsstatus) for possible values.
|
17
16
|
attr_accessor :status
|
18
17
|
|
19
18
|
# The credit card's non-confidential details.
|
20
19
|
attr_accessor :card
|
21
20
|
|
22
|
-
# The method used to
|
21
|
+
# The method used to enter the card's details for the transaction.
|
23
22
|
attr_accessor :entry_method
|
24
23
|
|
24
|
+
class EnumAttributeValidator
|
25
|
+
attr_reader :datatype
|
26
|
+
attr_reader :allowable_values
|
27
|
+
|
28
|
+
def initialize(datatype, allowable_values)
|
29
|
+
@allowable_values = allowable_values.map do |value|
|
30
|
+
case datatype.to_s
|
31
|
+
when /Integer/i
|
32
|
+
value.to_i
|
33
|
+
when /Float/i
|
34
|
+
value.to_f
|
35
|
+
else
|
36
|
+
value
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def valid?(value)
|
42
|
+
!value || allowable_values.include?(value)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
25
46
|
# Attribute mapping from ruby-style variable name to JSON key.
|
26
47
|
def self.attribute_map
|
27
48
|
{
|
28
|
-
|
29
49
|
:'status' => :'status',
|
30
|
-
|
31
50
|
:'card' => :'card',
|
32
|
-
|
33
51
|
:'entry_method' => :'entry_method'
|
34
|
-
|
35
52
|
}
|
36
53
|
end
|
37
54
|
|
@@ -41,50 +58,70 @@ module SquareConnect
|
|
41
58
|
:'status' => :'String',
|
42
59
|
:'card' => :'Card',
|
43
60
|
:'entry_method' => :'String'
|
44
|
-
|
45
61
|
}
|
46
62
|
end
|
47
63
|
|
64
|
+
# Initializes the object
|
65
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
48
66
|
def initialize(attributes = {})
|
49
67
|
return unless attributes.is_a?(Hash)
|
50
68
|
|
51
69
|
# convert string to symbol for hash key
|
52
|
-
attributes = attributes.
|
70
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
53
71
|
|
54
|
-
|
55
|
-
if attributes[:'status']
|
72
|
+
if attributes.has_key?(:'status')
|
56
73
|
self.status = attributes[:'status']
|
57
74
|
end
|
58
|
-
|
59
|
-
if attributes
|
75
|
+
|
76
|
+
if attributes.has_key?(:'card')
|
60
77
|
self.card = attributes[:'card']
|
61
78
|
end
|
62
|
-
|
63
|
-
if attributes
|
79
|
+
|
80
|
+
if attributes.has_key?(:'entry_method')
|
64
81
|
self.entry_method = attributes[:'entry_method']
|
65
82
|
end
|
66
|
-
|
83
|
+
|
84
|
+
end
|
85
|
+
|
86
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
87
|
+
# @return Array for valid properies with the reasons
|
88
|
+
def list_invalid_properties
|
89
|
+
invalid_properties = Array.new
|
90
|
+
return invalid_properties
|
91
|
+
end
|
92
|
+
|
93
|
+
# Check to see if the all the properties in the model are valid
|
94
|
+
# @return true if the model is valid
|
95
|
+
def valid?
|
96
|
+
status_validator = EnumAttributeValidator.new('String', ["AUTHORIZED", "CAPTURED", "VOIDED", "FAILED"])
|
97
|
+
return false unless status_validator.valid?(@status)
|
98
|
+
entry_method_validator = EnumAttributeValidator.new('String', ["SWIPED", "KEYED", "EMV", "ON_FILE", "CONTACTLESS"])
|
99
|
+
return false unless entry_method_validator.valid?(@entry_method)
|
100
|
+
return true
|
67
101
|
end
|
68
102
|
|
69
103
|
# Custom attribute writer method checking allowed values (enum).
|
104
|
+
# @param [Object] status Object to be assigned
|
70
105
|
def status=(status)
|
71
|
-
|
72
|
-
|
73
|
-
fail "invalid value for 'status', must be one of #{
|
106
|
+
validator = EnumAttributeValidator.new('String', ["AUTHORIZED", "CAPTURED", "VOIDED", "FAILED"])
|
107
|
+
unless validator.valid?(status)
|
108
|
+
fail ArgumentError, "invalid value for 'status', must be one of #{validator.allowable_values}."
|
74
109
|
end
|
75
110
|
@status = status
|
76
111
|
end
|
77
112
|
|
78
113
|
# Custom attribute writer method checking allowed values (enum).
|
114
|
+
# @param [Object] entry_method Object to be assigned
|
79
115
|
def entry_method=(entry_method)
|
80
|
-
|
81
|
-
|
82
|
-
fail "invalid value for 'entry_method', must be one of #{
|
116
|
+
validator = EnumAttributeValidator.new('String', ["SWIPED", "KEYED", "EMV", "ON_FILE", "CONTACTLESS"])
|
117
|
+
unless validator.valid?(entry_method)
|
118
|
+
fail ArgumentError, "invalid value for 'entry_method', must be one of #{validator.allowable_values}."
|
83
119
|
end
|
84
120
|
@entry_method = entry_method
|
85
121
|
end
|
86
122
|
|
87
|
-
#
|
123
|
+
# Checks equality by comparing each attribute.
|
124
|
+
# @param [Object] Object to be compared
|
88
125
|
def ==(o)
|
89
126
|
return true if self.equal?(o)
|
90
127
|
self.class == o.class &&
|
@@ -94,35 +131,41 @@ module SquareConnect
|
|
94
131
|
end
|
95
132
|
|
96
133
|
# @see the `==` method
|
134
|
+
# @param [Object] Object to be compared
|
97
135
|
def eql?(o)
|
98
136
|
self == o
|
99
137
|
end
|
100
138
|
|
101
|
-
#
|
139
|
+
# Calculates hash code according to all attributes.
|
140
|
+
# @return [Fixnum] Hash code
|
102
141
|
def hash
|
103
142
|
[status, card, entry_method].hash
|
104
143
|
end
|
105
144
|
|
106
|
-
#
|
145
|
+
# Builds the object from hash
|
146
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
147
|
+
# @return [Object] Returns the model itself
|
107
148
|
def build_from_hash(attributes)
|
108
149
|
return nil unless attributes.is_a?(Hash)
|
109
150
|
self.class.swagger_types.each_pair do |key, type|
|
110
|
-
if type =~
|
151
|
+
if type =~ /\AArray<(.*)>/i
|
152
|
+
# check to ensure the input is an array given that the the attribute
|
153
|
+
# is documented as an array but the input is not
|
111
154
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
112
155
|
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
113
|
-
else
|
114
|
-
#TODO show warning in debug mode
|
115
156
|
end
|
116
157
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
117
158
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
118
|
-
else
|
119
|
-
# data not found in attributes(hash), not an issue as the data can be optional
|
120
|
-
end
|
159
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
121
160
|
end
|
122
161
|
|
123
162
|
self
|
124
163
|
end
|
125
164
|
|
165
|
+
# Deserializes the data based on type
|
166
|
+
# @param string type Data type
|
167
|
+
# @param string value Value to be deserialized
|
168
|
+
# @return [Object] Deserialized data
|
126
169
|
def _deserialize(type, value)
|
127
170
|
case type.to_sym
|
128
171
|
when :DateTime
|
@@ -136,15 +179,18 @@ module SquareConnect
|
|
136
179
|
when :Float
|
137
180
|
value.to_f
|
138
181
|
when :BOOLEAN
|
139
|
-
if value.to_s =~
|
182
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
140
183
|
true
|
141
184
|
else
|
142
185
|
false
|
143
186
|
end
|
187
|
+
when :Object
|
188
|
+
# generic object (usually a Hash), return directly
|
189
|
+
value
|
144
190
|
when /\AArray<(?<inner_type>.+)>\z/
|
145
191
|
inner_type = Regexp.last_match[:inner_type]
|
146
192
|
value.map { |v| _deserialize(inner_type, v) }
|
147
|
-
when /\AHash<(?<k_type
|
193
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
148
194
|
k_type = Regexp.last_match[:k_type]
|
149
195
|
v_type = Regexp.last_match[:v_type]
|
150
196
|
{}.tap do |hash|
|
@@ -153,21 +199,25 @@ module SquareConnect
|
|
153
199
|
end
|
154
200
|
end
|
155
201
|
else # model
|
156
|
-
|
157
|
-
|
202
|
+
temp_model = SquareConnect.const_get(type).new
|
203
|
+
temp_model.build_from_hash(value)
|
158
204
|
end
|
159
205
|
end
|
160
206
|
|
207
|
+
# Returns the string representation of the object
|
208
|
+
# @return [String] String presentation of the object
|
161
209
|
def to_s
|
162
210
|
to_hash.to_s
|
163
211
|
end
|
164
212
|
|
165
|
-
# to_body is an alias to
|
213
|
+
# to_body is an alias to to_hash (backward compatibility)
|
214
|
+
# @return [Hash] Returns the object in the form of hash
|
166
215
|
def to_body
|
167
216
|
to_hash
|
168
217
|
end
|
169
218
|
|
170
|
-
#
|
219
|
+
# Returns the object in the form of hash
|
220
|
+
# @return [Hash] Returns the object in the form of hash
|
171
221
|
def to_hash
|
172
222
|
hash = {}
|
173
223
|
self.class.attribute_map.each_pair do |attr, param|
|
@@ -178,8 +228,10 @@ module SquareConnect
|
|
178
228
|
hash
|
179
229
|
end
|
180
230
|
|
181
|
-
#
|
231
|
+
# Outputs non-array value in the form of hash
|
182
232
|
# For object, use to_hash. Otherwise, just return the value
|
233
|
+
# @param [Object] value Any valid value
|
234
|
+
# @return [Hash] Returns the value in the form of hash
|
183
235
|
def _to_hash(value)
|
184
236
|
if value.is_a?(Array)
|
185
237
|
value.compact.map{ |v| _to_hash(v) }
|
@@ -195,4 +247,5 @@ module SquareConnect
|
|
195
247
|
end
|
196
248
|
|
197
249
|
end
|
250
|
+
|
198
251
|
end
|
@@ -1,147 +1,22 @@
|
|
1
1
|
=begin
|
2
|
-
Square Connect API
|
2
|
+
#Square Connect API
|
3
3
|
|
4
4
|
OpenAPI spec version: 2.0
|
5
5
|
|
6
6
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
7
7
|
|
8
|
-
|
9
8
|
=end
|
10
9
|
|
11
10
|
require 'date'
|
12
11
|
|
13
12
|
module SquareConnect
|
14
|
-
# The method used to read the card
|
15
13
|
class TenderCardDetailsEntryMethod
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
# Attribute type mapping.
|
24
|
-
def self.swagger_types
|
25
|
-
{
|
26
|
-
|
27
|
-
}
|
28
|
-
end
|
29
|
-
|
30
|
-
def initialize(attributes = {})
|
31
|
-
return unless attributes.is_a?(Hash)
|
32
|
-
|
33
|
-
# convert string to symbol for hash key
|
34
|
-
attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
|
35
|
-
|
36
|
-
|
37
|
-
end
|
38
|
-
|
39
|
-
# Check equality by comparing each attribute.
|
40
|
-
def ==(o)
|
41
|
-
return true if self.equal?(o)
|
42
|
-
self.class == o.class
|
43
|
-
end
|
44
|
-
|
45
|
-
# @see the `==` method
|
46
|
-
def eql?(o)
|
47
|
-
self == o
|
48
|
-
end
|
49
|
-
|
50
|
-
# Calculate hash code according to all attributes.
|
51
|
-
def hash
|
52
|
-
[].hash
|
53
|
-
end
|
54
|
-
|
55
|
-
# build the object from hash
|
56
|
-
def build_from_hash(attributes)
|
57
|
-
return nil unless attributes.is_a?(Hash)
|
58
|
-
self.class.swagger_types.each_pair do |key, type|
|
59
|
-
if type =~ /^Array<(.*)>/i
|
60
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
61
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
62
|
-
else
|
63
|
-
#TODO show warning in debug mode
|
64
|
-
end
|
65
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
66
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
67
|
-
else
|
68
|
-
# data not found in attributes(hash), not an issue as the data can be optional
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
self
|
73
|
-
end
|
74
|
-
|
75
|
-
def _deserialize(type, value)
|
76
|
-
case type.to_sym
|
77
|
-
when :DateTime
|
78
|
-
DateTime.parse(value)
|
79
|
-
when :Date
|
80
|
-
Date.parse(value)
|
81
|
-
when :String
|
82
|
-
value.to_s
|
83
|
-
when :Integer
|
84
|
-
value.to_i
|
85
|
-
when :Float
|
86
|
-
value.to_f
|
87
|
-
when :BOOLEAN
|
88
|
-
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
89
|
-
true
|
90
|
-
else
|
91
|
-
false
|
92
|
-
end
|
93
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
94
|
-
inner_type = Regexp.last_match[:inner_type]
|
95
|
-
value.map { |v| _deserialize(inner_type, v) }
|
96
|
-
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
97
|
-
k_type = Regexp.last_match[:k_type]
|
98
|
-
v_type = Regexp.last_match[:v_type]
|
99
|
-
{}.tap do |hash|
|
100
|
-
value.each do |k, v|
|
101
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
102
|
-
end
|
103
|
-
end
|
104
|
-
else # model
|
105
|
-
_model = SquareConnect.const_get(type).new
|
106
|
-
_model.build_from_hash(value)
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
def to_s
|
111
|
-
to_hash.to_s
|
112
|
-
end
|
113
|
-
|
114
|
-
# to_body is an alias to to_body (backward compatibility))
|
115
|
-
def to_body
|
116
|
-
to_hash
|
117
|
-
end
|
118
|
-
|
119
|
-
# return the object in the form of hash
|
120
|
-
def to_hash
|
121
|
-
hash = {}
|
122
|
-
self.class.attribute_map.each_pair do |attr, param|
|
123
|
-
value = self.send(attr)
|
124
|
-
next if value.nil?
|
125
|
-
hash[param] = _to_hash(value)
|
126
|
-
end
|
127
|
-
hash
|
128
|
-
end
|
129
|
-
|
130
|
-
# Method to output non-array value in the form of hash
|
131
|
-
# For object, use to_hash. Otherwise, just return the value
|
132
|
-
def _to_hash(value)
|
133
|
-
if value.is_a?(Array)
|
134
|
-
value.compact.map{ |v| _to_hash(v) }
|
135
|
-
elsif value.is_a?(Hash)
|
136
|
-
{}.tap do |hash|
|
137
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
138
|
-
end
|
139
|
-
elsif value.respond_to? :to_hash
|
140
|
-
value.to_hash
|
141
|
-
else
|
142
|
-
value
|
143
|
-
end
|
144
|
-
end
|
145
|
-
|
14
|
+
|
15
|
+
SWIPED = "SWIPED".freeze
|
16
|
+
KEYED = "KEYED".freeze
|
17
|
+
EMV = "EMV".freeze
|
18
|
+
ON_FILE = "ON_FILE".freeze
|
19
|
+
CONTACTLESS = "CONTACTLESS".freeze
|
146
20
|
end
|
21
|
+
|
147
22
|
end
|
@@ -1,147 +1,21 @@
|
|
1
1
|
=begin
|
2
|
-
Square Connect API
|
2
|
+
#Square Connect API
|
3
3
|
|
4
4
|
OpenAPI spec version: 2.0
|
5
5
|
|
6
6
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
7
7
|
|
8
|
-
|
9
8
|
=end
|
10
9
|
|
11
10
|
require 'date'
|
12
11
|
|
13
12
|
module SquareConnect
|
14
|
-
#
|
15
13
|
class TenderCardDetailsStatus
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
end
|
22
|
-
|
23
|
-
# Attribute type mapping.
|
24
|
-
def self.swagger_types
|
25
|
-
{
|
26
|
-
|
27
|
-
}
|
28
|
-
end
|
29
|
-
|
30
|
-
def initialize(attributes = {})
|
31
|
-
return unless attributes.is_a?(Hash)
|
32
|
-
|
33
|
-
# convert string to symbol for hash key
|
34
|
-
attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
|
35
|
-
|
36
|
-
|
37
|
-
end
|
38
|
-
|
39
|
-
# Check equality by comparing each attribute.
|
40
|
-
def ==(o)
|
41
|
-
return true if self.equal?(o)
|
42
|
-
self.class == o.class
|
43
|
-
end
|
44
|
-
|
45
|
-
# @see the `==` method
|
46
|
-
def eql?(o)
|
47
|
-
self == o
|
48
|
-
end
|
49
|
-
|
50
|
-
# Calculate hash code according to all attributes.
|
51
|
-
def hash
|
52
|
-
[].hash
|
53
|
-
end
|
54
|
-
|
55
|
-
# build the object from hash
|
56
|
-
def build_from_hash(attributes)
|
57
|
-
return nil unless attributes.is_a?(Hash)
|
58
|
-
self.class.swagger_types.each_pair do |key, type|
|
59
|
-
if type =~ /^Array<(.*)>/i
|
60
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
61
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
62
|
-
else
|
63
|
-
#TODO show warning in debug mode
|
64
|
-
end
|
65
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
66
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
67
|
-
else
|
68
|
-
# data not found in attributes(hash), not an issue as the data can be optional
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
self
|
73
|
-
end
|
74
|
-
|
75
|
-
def _deserialize(type, value)
|
76
|
-
case type.to_sym
|
77
|
-
when :DateTime
|
78
|
-
DateTime.parse(value)
|
79
|
-
when :Date
|
80
|
-
Date.parse(value)
|
81
|
-
when :String
|
82
|
-
value.to_s
|
83
|
-
when :Integer
|
84
|
-
value.to_i
|
85
|
-
when :Float
|
86
|
-
value.to_f
|
87
|
-
when :BOOLEAN
|
88
|
-
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
89
|
-
true
|
90
|
-
else
|
91
|
-
false
|
92
|
-
end
|
93
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
94
|
-
inner_type = Regexp.last_match[:inner_type]
|
95
|
-
value.map { |v| _deserialize(inner_type, v) }
|
96
|
-
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
97
|
-
k_type = Regexp.last_match[:k_type]
|
98
|
-
v_type = Regexp.last_match[:v_type]
|
99
|
-
{}.tap do |hash|
|
100
|
-
value.each do |k, v|
|
101
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
102
|
-
end
|
103
|
-
end
|
104
|
-
else # model
|
105
|
-
_model = SquareConnect.const_get(type).new
|
106
|
-
_model.build_from_hash(value)
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
def to_s
|
111
|
-
to_hash.to_s
|
112
|
-
end
|
113
|
-
|
114
|
-
# to_body is an alias to to_body (backward compatibility))
|
115
|
-
def to_body
|
116
|
-
to_hash
|
117
|
-
end
|
118
|
-
|
119
|
-
# return the object in the form of hash
|
120
|
-
def to_hash
|
121
|
-
hash = {}
|
122
|
-
self.class.attribute_map.each_pair do |attr, param|
|
123
|
-
value = self.send(attr)
|
124
|
-
next if value.nil?
|
125
|
-
hash[param] = _to_hash(value)
|
126
|
-
end
|
127
|
-
hash
|
128
|
-
end
|
129
|
-
|
130
|
-
# Method to output non-array value in the form of hash
|
131
|
-
# For object, use to_hash. Otherwise, just return the value
|
132
|
-
def _to_hash(value)
|
133
|
-
if value.is_a?(Array)
|
134
|
-
value.compact.map{ |v| _to_hash(v) }
|
135
|
-
elsif value.is_a?(Hash)
|
136
|
-
{}.tap do |hash|
|
137
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
138
|
-
end
|
139
|
-
elsif value.respond_to? :to_hash
|
140
|
-
value.to_hash
|
141
|
-
else
|
142
|
-
value
|
143
|
-
end
|
144
|
-
end
|
145
|
-
|
14
|
+
|
15
|
+
AUTHORIZED = "AUTHORIZED".freeze
|
16
|
+
CAPTURED = "CAPTURED".freeze
|
17
|
+
VOIDED = "VOIDED".freeze
|
18
|
+
FAILED = "FAILED".freeze
|
146
19
|
end
|
20
|
+
|
147
21
|
end
|