transferzero-sdk 1.8.0 → 1.8.1
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 +4 -4
- data/README.md +8 -5
- data/docs/AccountMeta.md +1 -1
- data/docs/Currency.md +1 -3
- data/docs/CurrencyExchange.md +1 -3
- data/docs/CurrencyOpposite.md +4 -4
- data/docs/Document.md +3 -3
- data/docs/DocumentsApi.md +2 -74
- data/docs/FieldSelectValidation.md +1 -1
- data/docs/FieldValidation.md +1 -1
- data/docs/PayinMethodDetails.md +3 -1
- data/docs/PayinMethodDetailsBTC.md +17 -0
- data/docs/PayinMethodDetailsMobile.md +1 -1
- data/docs/PaymentMethod.md +2 -2
- data/docs/PaymentMethodOpposite.md +2 -2
- data/docs/PayoutMethod.md +1 -1
- data/docs/PayoutMethodDetails.md +17 -1
- data/docs/PayoutMethodDetailsBTC.md +23 -0
- data/docs/PayoutMethodDetailsGBPBank.md +29 -0
- data/docs/PayoutMethodDetailsIBAN.md +1 -1
- data/docs/PayoutMethodDetailsZARBank.md +35 -0
- data/docs/Recipient.md +4 -4
- data/docs/RecipientsApi.md +1 -1
- data/docs/Sender.md +71 -33
- data/lib/transferzero-sdk.rb +4 -0
- data/lib/transferzero-sdk/api/documents_api.rb +0 -63
- data/lib/transferzero-sdk/api/recipients_api.rb +2 -2
- data/lib/transferzero-sdk/api_client.rb +5 -3
- data/lib/transferzero-sdk/models/account.rb +70 -69
- data/lib/transferzero-sdk/models/account_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/account_meta.rb +61 -60
- data/lib/transferzero-sdk/models/account_response.rb +66 -65
- data/lib/transferzero-sdk/models/account_validation_error.rb +61 -60
- data/lib/transferzero-sdk/models/account_validation_request.rb +164 -163
- data/lib/transferzero-sdk/models/account_validation_response.rb +66 -65
- data/lib/transferzero-sdk/models/account_validation_result.rb +61 -60
- data/lib/transferzero-sdk/models/api_log.rb +136 -135
- data/lib/transferzero-sdk/models/api_log_list_response.rb +70 -69
- data/lib/transferzero-sdk/models/api_log_response.rb +60 -59
- data/lib/transferzero-sdk/models/currency.rb +133 -142
- data/lib/transferzero-sdk/models/currency_exchange.rb +149 -158
- data/lib/transferzero-sdk/models/currency_exchange_list_response.rb +62 -61
- data/lib/transferzero-sdk/models/currency_list_response.rb +62 -61
- data/lib/transferzero-sdk/models/currency_opposite.rb +166 -165
- data/lib/transferzero-sdk/models/debit.rb +151 -150
- data/lib/transferzero-sdk/models/debit_list_request.rb +61 -60
- data/lib/transferzero-sdk/models/debit_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/debit_request.rb +60 -59
- data/lib/transferzero-sdk/models/debit_request_wrapper.rb +80 -79
- data/lib/transferzero-sdk/models/debit_response.rb +60 -59
- data/lib/transferzero-sdk/models/document.rb +179 -177
- data/lib/transferzero-sdk/models/document_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/document_request.rb +60 -59
- data/lib/transferzero-sdk/models/document_response.rb +60 -59
- data/lib/transferzero-sdk/models/document_webhook.rb +96 -95
- data/lib/transferzero-sdk/models/error_status.rb +66 -65
- data/lib/transferzero-sdk/models/field_description.rb +95 -94
- data/lib/transferzero-sdk/models/field_select_validation.rb +70 -69
- data/lib/transferzero-sdk/models/field_validation.rb +78 -77
- data/lib/transferzero-sdk/models/pagination.rb +97 -96
- data/lib/transferzero-sdk/models/pagination_meta.rb +60 -59
- data/lib/transferzero-sdk/models/payin_method.rb +97 -96
- data/lib/transferzero-sdk/models/payin_method_details.rb +122 -110
- data/lib/transferzero-sdk/models/payin_method_details_btc.rb +204 -0
- data/lib/transferzero-sdk/models/payin_method_details_mobile.rb +75 -74
- data/lib/transferzero-sdk/models/payin_method_details_ngn_bank.rb +71 -70
- data/lib/transferzero-sdk/models/payin_method_request.rb +60 -59
- data/lib/transferzero-sdk/models/payment_method.rb +109 -108
- data/lib/transferzero-sdk/models/payment_method_list_response.rb +61 -60
- data/lib/transferzero-sdk/models/payment_method_opposite.rb +124 -123
- data/lib/transferzero-sdk/models/payout_method.rb +107 -106
- data/lib/transferzero-sdk/models/payout_method_bank_account_type_enum.rb +14 -19
- data/lib/transferzero-sdk/models/payout_method_details.rb +398 -297
- data/lib/transferzero-sdk/models/payout_method_details_balance.rb +61 -60
- data/lib/transferzero-sdk/models/payout_method_details_btc.rb +250 -0
- data/lib/transferzero-sdk/models/payout_method_details_gbp_bank.rb +267 -0
- data/lib/transferzero-sdk/models/payout_method_details_ghs_bank.rb +97 -96
- data/lib/transferzero-sdk/models/payout_method_details_iban.rb +100 -104
- data/lib/transferzero-sdk/models/payout_method_details_mad_cash.rb +162 -161
- data/lib/transferzero-sdk/models/payout_method_details_mobile.rb +86 -85
- data/lib/transferzero-sdk/models/payout_method_details_ngn_bank.rb +104 -103
- data/lib/transferzero-sdk/models/payout_method_details_xof_bank.rb +108 -107
- data/lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb +97 -96
- data/lib/transferzero-sdk/models/payout_method_details_zar_bank.rb +324 -0
- data/lib/transferzero-sdk/models/payout_method_gender_enum.rb +14 -19
- data/lib/transferzero-sdk/models/payout_method_identity_card_type_enum.rb +15 -20
- data/lib/transferzero-sdk/models/payout_method_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/payout_method_mobile_provider_enum.rb +14 -19
- data/lib/transferzero-sdk/models/payout_method_request.rb +60 -59
- data/lib/transferzero-sdk/models/payout_method_response.rb +60 -59
- data/lib/transferzero-sdk/models/payout_method_webhook.rb +96 -95
- data/lib/transferzero-sdk/models/politically_exposed_person.rb +123 -123
- data/lib/transferzero-sdk/models/recipient.rb +230 -229
- data/lib/transferzero-sdk/models/recipient_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/recipient_request.rb +60 -59
- data/lib/transferzero-sdk/models/recipient_response.rb +60 -59
- data/lib/transferzero-sdk/models/recipient_state.rb +22 -27
- data/lib/transferzero-sdk/models/recipient_webhook.rb +96 -95
- data/lib/transferzero-sdk/models/sender.rb +573 -358
- data/lib/transferzero-sdk/models/sender_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/sender_request.rb +60 -59
- data/lib/transferzero-sdk/models/sender_response.rb +66 -65
- data/lib/transferzero-sdk/models/sender_response_existing.rb +60 -59
- data/lib/transferzero-sdk/models/sender_response_meta.rb +60 -59
- data/lib/transferzero-sdk/models/sender_state.rb +19 -24
- data/lib/transferzero-sdk/models/sender_webhook.rb +96 -95
- data/lib/transferzero-sdk/models/transaction.rb +192 -191
- data/lib/transferzero-sdk/models/transaction_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/transaction_request.rb +60 -59
- data/lib/transferzero-sdk/models/transaction_response.rb +66 -65
- data/lib/transferzero-sdk/models/transaction_response_existing.rb +66 -65
- data/lib/transferzero-sdk/models/transaction_response_meta.rb +60 -59
- data/lib/transferzero-sdk/models/transaction_state.rb +23 -28
- data/lib/transferzero-sdk/models/transaction_traits.rb +71 -70
- data/lib/transferzero-sdk/models/transaction_webhook.rb +96 -95
- data/lib/transferzero-sdk/models/validation_error_description.rb +62 -61
- data/lib/transferzero-sdk/models/webhook.rb +92 -91
- data/lib/transferzero-sdk/models/webhook_definition.rb +107 -106
- data/lib/transferzero-sdk/models/webhook_definition_event_list_response.rb +61 -60
- data/lib/transferzero-sdk/models/webhook_definition_list_response.rb +67 -66
- data/lib/transferzero-sdk/models/webhook_definition_request.rb +60 -59
- data/lib/transferzero-sdk/models/webhook_definition_response.rb +60 -59
- data/lib/transferzero-sdk/models/webhook_log.rb +97 -96
- data/lib/transferzero-sdk/models/webhook_log_list_response.rb +70 -69
- data/lib/transferzero-sdk/models/webhook_log_metadata.rb +129 -128
- data/lib/transferzero-sdk/models/webhook_log_metadata_request.rb +80 -79
- data/lib/transferzero-sdk/models/webhook_log_metadata_response.rb +81 -80
- data/lib/transferzero-sdk/models/webhook_log_response.rb +60 -59
- data/lib/transferzero-sdk/version.rb +1 -1
- data/spec/models/payin_method_details_btc_spec.rb +41 -0
- data/spec/models/payout_method_details_btc_spec.rb +59 -0
- data/spec/models/payout_method_details_gbp_bank_spec.rb +77 -0
- data/spec/models/payout_method_details_zar_bank_spec.rb +89 -0
- metadata +28 -12
@@ -13,244 +13,244 @@ OpenAPI Generator version: 4.0.0-beta3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module TransferZero
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
16
|
+
# The template of transactions are the following: ```JSON { \"input_currency\": // currency to pay in, \"sender\":{ // details of the sender }, \"recipients\":[ { \"requested_amount\": // the amount to pay out, \"requested_currency\": // the currency of the amount, \"payout_method\":{ \"type\": // method of the payout, \"details\":{ // details of the recipient } } } ], \"metadata\": // optional metadata } ```
|
17
|
+
class Transaction
|
18
|
+
# The input currency describes what currency the transaction will be paid in (3-character alpha ISO 4217 currency format). For example if you wish to create an EUR to NGN transaction then input currency should be set to EUR.
|
19
|
+
attr_accessor :input_currency
|
20
20
|
|
21
|
-
|
22
|
-
|
21
|
+
# Allows setting alternative collections, where funding the transaction is done through alternative means and not via account balance. For more information please see [Collections from senders](https://docs.transferzero.com/docs/additional-features/#collections-from-senders) in the API documentation
|
22
|
+
attr_accessor :payin_methods
|
23
23
|
|
24
|
-
|
25
|
-
|
24
|
+
# Additional metadata to store on the transaction. If you widh to store your local transaction ID, you should add it here inside a `sendRef` field, and we will return this value back to you in the daily transaction reports.
|
25
|
+
attr_accessor :metadata
|
26
26
|
|
27
|
-
|
27
|
+
attr_accessor :sender
|
28
28
|
|
29
|
-
|
30
|
-
|
29
|
+
# The details of where the payment should go. although transactions can support paying out multiple recipients, usually one is provided.
|
30
|
+
attr_accessor :recipients
|
31
31
|
|
32
|
-
|
32
|
+
attr_accessor :traits
|
33
33
|
|
34
|
-
|
34
|
+
attr_accessor :state
|
35
35
|
|
36
|
-
|
37
|
-
|
36
|
+
# The amount that was requested in the input currency
|
37
|
+
attr_accessor :input_amount
|
38
38
|
|
39
|
-
|
40
|
-
|
39
|
+
# The reference number that has to be provided in case the transaction is not funded through account balance
|
40
|
+
attr_accessor :payin_reference
|
41
41
|
|
42
|
-
|
43
|
-
|
42
|
+
# The amount that was already paid in to the transaction
|
43
|
+
attr_accessor :paid_amount
|
44
44
|
|
45
|
-
|
46
|
-
|
45
|
+
# The amount needed to be paid in for the transaction to get funded
|
46
|
+
attr_accessor :due_amount
|
47
47
|
|
48
|
-
|
49
|
-
|
48
|
+
# The time the transaction was created
|
49
|
+
attr_accessor :created_at
|
50
50
|
|
51
|
-
|
52
|
-
|
51
|
+
# The latest time when the transaction has to be funded, otherwise it will be cancelled
|
52
|
+
attr_accessor :expires_at
|
53
53
|
|
54
|
-
|
55
|
-
|
54
|
+
# Optional ID that is supplied by partner linking it to the partner's own Transaction ID. Note: if present we will validate whether the sent ID is a duplicate in our system or not.
|
55
|
+
attr_accessor :external_id
|
56
56
|
|
57
|
-
|
57
|
+
attr_accessor :id
|
58
58
|
|
59
|
-
|
60
|
-
|
59
|
+
# The fields that have some problems and don't pass validation
|
60
|
+
attr_accessor :errors
|
61
61
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
# Attribute type mapping.
|
85
|
-
def self.openapi_types
|
86
|
-
{
|
87
|
-
:'input_currency' => :'String',
|
88
|
-
:'payin_methods' => :'Array<PayinMethod>',
|
89
|
-
:'metadata' => :'Object',
|
90
|
-
:'sender' => :'Sender',
|
91
|
-
:'recipients' => :'Array<Recipient>',
|
92
|
-
:'traits' => :'TransactionTraits',
|
93
|
-
:'state' => :'TransactionState',
|
94
|
-
:'input_amount' => :'Float',
|
95
|
-
:'payin_reference' => :'String',
|
96
|
-
:'paid_amount' => :'Float',
|
97
|
-
:'due_amount' => :'Float',
|
98
|
-
:'created_at' => :'DateTime',
|
99
|
-
:'expires_at' => :'DateTime',
|
100
|
-
:'external_id' => :'String',
|
101
|
-
:'id' => :'String',
|
102
|
-
:'errors' => :'Hash<String, Array<ValidationErrorDescription>>'
|
103
|
-
}
|
104
|
-
end
|
105
|
-
|
106
|
-
# Initializes the object
|
107
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
108
|
-
def initialize(attributes = {})
|
109
|
-
if (!attributes.is_a?(Hash))
|
110
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::Transaction` initialize method"
|
111
|
-
end
|
112
|
-
|
113
|
-
# check to see if the attribute exists and convert string to symbol for hash key
|
114
|
-
attributes = attributes.each_with_object({}) { |(k, v), h|
|
115
|
-
if (!self.class.attribute_map.key?(k.to_sym))
|
116
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::Transaction`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
117
|
-
end
|
118
|
-
h[k.to_sym] = v
|
119
|
-
}
|
62
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
63
|
+
def self.attribute_map
|
64
|
+
{
|
65
|
+
:'input_currency' => :'input_currency',
|
66
|
+
:'payin_methods' => :'payin_methods',
|
67
|
+
:'metadata' => :'metadata',
|
68
|
+
:'sender' => :'sender',
|
69
|
+
:'recipients' => :'recipients',
|
70
|
+
:'traits' => :'traits',
|
71
|
+
:'state' => :'state',
|
72
|
+
:'input_amount' => :'input_amount',
|
73
|
+
:'payin_reference' => :'payin_reference',
|
74
|
+
:'paid_amount' => :'paid_amount',
|
75
|
+
:'due_amount' => :'due_amount',
|
76
|
+
:'created_at' => :'created_at',
|
77
|
+
:'expires_at' => :'expires_at',
|
78
|
+
:'external_id' => :'external_id',
|
79
|
+
:'id' => :'id',
|
80
|
+
:'errors' => :'errors'
|
81
|
+
}
|
82
|
+
end
|
120
83
|
|
121
|
-
|
122
|
-
|
123
|
-
|
84
|
+
# Attribute type mapping.
|
85
|
+
def self.openapi_types
|
86
|
+
{
|
87
|
+
:'input_currency' => :'String',
|
88
|
+
:'payin_methods' => :'Array<PayinMethod>',
|
89
|
+
:'metadata' => :'Object',
|
90
|
+
:'sender' => :'Sender',
|
91
|
+
:'recipients' => :'Array<Recipient>',
|
92
|
+
:'traits' => :'TransactionTraits',
|
93
|
+
:'state' => :'TransactionState',
|
94
|
+
:'input_amount' => :'Float',
|
95
|
+
:'payin_reference' => :'String',
|
96
|
+
:'paid_amount' => :'Float',
|
97
|
+
:'due_amount' => :'Float',
|
98
|
+
:'created_at' => :'DateTime',
|
99
|
+
:'expires_at' => :'DateTime',
|
100
|
+
:'external_id' => :'String',
|
101
|
+
:'id' => :'String',
|
102
|
+
:'errors' => :'Hash<String, Array<ValidationErrorDescription>>'
|
103
|
+
}
|
104
|
+
end
|
124
105
|
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
106
|
+
# Initializes the object
|
107
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
108
|
+
def initialize(attributes = {})
|
109
|
+
if (!attributes.is_a?(Hash))
|
110
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::Transaction` initialize method"
|
111
|
+
end
|
130
112
|
|
131
|
-
|
132
|
-
|
113
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
114
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
115
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
116
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::Transaction`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
133
117
|
end
|
118
|
+
h[k.to_sym] = v
|
119
|
+
}
|
134
120
|
|
135
|
-
|
136
|
-
|
137
|
-
|
121
|
+
if attributes.key?(:'input_currency')
|
122
|
+
self.input_currency = attributes[:'input_currency']
|
123
|
+
end
|
138
124
|
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
end
|
125
|
+
if attributes.key?(:'payin_methods')
|
126
|
+
if (value = attributes[:'payin_methods']).is_a?(Array)
|
127
|
+
self.payin_methods = value
|
143
128
|
end
|
129
|
+
end
|
144
130
|
|
145
|
-
|
146
|
-
|
147
|
-
|
131
|
+
if attributes.key?(:'metadata')
|
132
|
+
self.metadata = attributes[:'metadata']
|
133
|
+
end
|
148
134
|
|
149
|
-
|
150
|
-
|
151
|
-
|
135
|
+
if attributes.key?(:'sender')
|
136
|
+
self.sender = attributes[:'sender']
|
137
|
+
end
|
152
138
|
|
153
|
-
|
154
|
-
|
139
|
+
if attributes.key?(:'recipients')
|
140
|
+
if (value = attributes[:'recipients']).is_a?(Array)
|
141
|
+
self.recipients = value
|
155
142
|
end
|
143
|
+
end
|
156
144
|
|
157
|
-
|
158
|
-
|
159
|
-
|
145
|
+
if attributes.key?(:'traits')
|
146
|
+
self.traits = attributes[:'traits']
|
147
|
+
end
|
160
148
|
|
161
|
-
|
162
|
-
|
163
|
-
|
149
|
+
if attributes.key?(:'state')
|
150
|
+
self.state = attributes[:'state']
|
151
|
+
end
|
164
152
|
|
165
|
-
|
166
|
-
|
167
|
-
|
153
|
+
if attributes.key?(:'input_amount')
|
154
|
+
self.input_amount = attributes[:'input_amount']
|
155
|
+
end
|
168
156
|
|
169
|
-
|
170
|
-
|
171
|
-
|
157
|
+
if attributes.key?(:'payin_reference')
|
158
|
+
self.payin_reference = attributes[:'payin_reference']
|
159
|
+
end
|
172
160
|
|
173
|
-
|
174
|
-
|
175
|
-
|
161
|
+
if attributes.key?(:'paid_amount')
|
162
|
+
self.paid_amount = attributes[:'paid_amount']
|
163
|
+
end
|
176
164
|
|
177
|
-
|
178
|
-
|
179
|
-
|
165
|
+
if attributes.key?(:'due_amount')
|
166
|
+
self.due_amount = attributes[:'due_amount']
|
167
|
+
end
|
180
168
|
|
181
|
-
|
182
|
-
|
183
|
-
|
169
|
+
if attributes.key?(:'created_at')
|
170
|
+
self.created_at = attributes[:'created_at']
|
171
|
+
end
|
184
172
|
|
185
|
-
|
186
|
-
|
187
|
-
self.errors = value
|
188
|
-
end
|
189
|
-
end
|
173
|
+
if attributes.key?(:'expires_at')
|
174
|
+
self.expires_at = attributes[:'expires_at']
|
190
175
|
end
|
191
176
|
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
invalid_properties = Array.new
|
196
|
-
if @input_currency.nil?
|
197
|
-
invalid_properties.push('invalid value for "input_currency", input_currency cannot be nil.')
|
198
|
-
end
|
177
|
+
if attributes.key?(:'external_id')
|
178
|
+
self.external_id = attributes[:'external_id']
|
179
|
+
end
|
199
180
|
|
200
|
-
|
201
|
-
|
202
|
-
|
181
|
+
if attributes.key?(:'id')
|
182
|
+
self.id = attributes[:'id']
|
183
|
+
end
|
203
184
|
|
204
|
-
|
205
|
-
|
185
|
+
if attributes.key?(:'errors')
|
186
|
+
if (value = attributes[:'errors']).is_a?(Hash)
|
187
|
+
self.errors = value
|
206
188
|
end
|
207
|
-
|
208
|
-
invalid_properties
|
209
189
|
end
|
190
|
+
end
|
210
191
|
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
true
|
192
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
193
|
+
# @return Array for valid properties with the reasons
|
194
|
+
def list_invalid_properties
|
195
|
+
invalid_properties = Array.new
|
196
|
+
if @input_currency.nil?
|
197
|
+
invalid_properties.push('invalid value for "input_currency", input_currency cannot be nil.')
|
218
198
|
end
|
219
199
|
|
220
|
-
|
221
|
-
|
222
|
-
def ==(o)
|
223
|
-
return true if self.equal?(o)
|
224
|
-
self.class == o.class &&
|
225
|
-
input_currency == o.input_currency &&
|
226
|
-
payin_methods == o.payin_methods &&
|
227
|
-
metadata == o.metadata &&
|
228
|
-
sender == o.sender &&
|
229
|
-
recipients == o.recipients &&
|
230
|
-
traits == o.traits &&
|
231
|
-
state == o.state &&
|
232
|
-
input_amount == o.input_amount &&
|
233
|
-
payin_reference == o.payin_reference &&
|
234
|
-
paid_amount == o.paid_amount &&
|
235
|
-
due_amount == o.due_amount &&
|
236
|
-
created_at == o.created_at &&
|
237
|
-
expires_at == o.expires_at &&
|
238
|
-
external_id == o.external_id &&
|
239
|
-
id == o.id &&
|
240
|
-
errors == o.errors
|
200
|
+
if @sender.nil?
|
201
|
+
invalid_properties.push('invalid value for "sender", sender cannot be nil.')
|
241
202
|
end
|
242
203
|
|
243
|
-
|
244
|
-
|
245
|
-
def eql?(o)
|
246
|
-
self == o
|
204
|
+
if @recipients.nil?
|
205
|
+
invalid_properties.push('invalid value for "recipients", recipients cannot be nil.')
|
247
206
|
end
|
248
207
|
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
208
|
+
invalid_properties
|
209
|
+
end
|
210
|
+
|
211
|
+
# Check to see if the all the properties in the model are valid
|
212
|
+
# @return true if the model is valid
|
213
|
+
def valid?
|
214
|
+
return false if @input_currency.nil?
|
215
|
+
return false if @sender.nil?
|
216
|
+
return false if @recipients.nil?
|
217
|
+
true
|
218
|
+
end
|
219
|
+
|
220
|
+
# Checks equality by comparing each attribute.
|
221
|
+
# @param [Object] Object to be compared
|
222
|
+
def ==(o)
|
223
|
+
return true if self.equal?(o)
|
224
|
+
self.class == o.class &&
|
225
|
+
input_currency == o.input_currency &&
|
226
|
+
payin_methods == o.payin_methods &&
|
227
|
+
metadata == o.metadata &&
|
228
|
+
sender == o.sender &&
|
229
|
+
recipients == o.recipients &&
|
230
|
+
traits == o.traits &&
|
231
|
+
state == o.state &&
|
232
|
+
input_amount == o.input_amount &&
|
233
|
+
payin_reference == o.payin_reference &&
|
234
|
+
paid_amount == o.paid_amount &&
|
235
|
+
due_amount == o.due_amount &&
|
236
|
+
created_at == o.created_at &&
|
237
|
+
expires_at == o.expires_at &&
|
238
|
+
external_id == o.external_id &&
|
239
|
+
id == o.id &&
|
240
|
+
errors == o.errors
|
241
|
+
end
|
242
|
+
|
243
|
+
# @see the `==` method
|
244
|
+
# @param [Object] Object to be compared
|
245
|
+
def eql?(o)
|
246
|
+
self == o
|
247
|
+
end
|
248
|
+
|
249
|
+
# Calculates hash code according to all attributes.
|
250
|
+
# @return [Integer] Hash code
|
251
|
+
def hash
|
252
|
+
[input_currency, payin_methods, metadata, sender, recipients, traits, state, input_amount, payin_reference, paid_amount, due_amount, created_at, expires_at, external_id, id, errors].hash
|
253
|
+
end
|
254
254
|
|
255
255
|
require 'active_support/core_ext/hash'
|
256
256
|
require 'active_support/hash_with_indifferent_access.rb'
|
@@ -366,5 +366,6 @@ def _to_hash(value)
|
|
366
366
|
end
|
367
367
|
end
|
368
368
|
|
369
|
-
|
369
|
+
end
|
370
|
+
|
370
371
|
end
|
@@ -13,86 +13,86 @@ OpenAPI Generator version: 4.0.0-beta3
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module TransferZero
|
16
|
-
|
17
|
-
|
16
|
+
class TransactionListResponse
|
17
|
+
attr_accessor :object
|
18
18
|
|
19
|
-
|
19
|
+
attr_accessor :meta
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
21
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
22
|
+
def self.attribute_map
|
23
|
+
{
|
24
|
+
:'object' => :'object',
|
25
|
+
:'meta' => :'meta'
|
26
|
+
}
|
27
|
+
end
|
28
28
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
29
|
+
# Attribute type mapping.
|
30
|
+
def self.openapi_types
|
31
|
+
{
|
32
|
+
:'object' => :'Array<Transaction>',
|
33
|
+
:'meta' => :'PaginationMeta'
|
34
|
+
}
|
35
|
+
end
|
36
36
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
37
|
+
# Initializes the object
|
38
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
39
|
+
def initialize(attributes = {})
|
40
|
+
if (!attributes.is_a?(Hash))
|
41
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::TransactionListResponse` initialize method"
|
42
|
+
end
|
43
43
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
end
|
49
|
-
h[k.to_sym] = v
|
50
|
-
}
|
51
|
-
|
52
|
-
if attributes.key?(:'object')
|
53
|
-
if (value = attributes[:'object']).is_a?(Array)
|
54
|
-
self.object = value
|
55
|
-
end
|
44
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
45
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
46
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
47
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::TransactionListResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
56
48
|
end
|
49
|
+
h[k.to_sym] = v
|
50
|
+
}
|
57
51
|
|
58
|
-
|
59
|
-
|
52
|
+
if attributes.key?(:'object')
|
53
|
+
if (value = attributes[:'object']).is_a?(Array)
|
54
|
+
self.object = value
|
60
55
|
end
|
61
56
|
end
|
62
57
|
|
63
|
-
|
64
|
-
|
65
|
-
def list_invalid_properties
|
66
|
-
invalid_properties = Array.new
|
67
|
-
invalid_properties
|
58
|
+
if attributes.key?(:'meta')
|
59
|
+
self.meta = attributes[:'meta']
|
68
60
|
end
|
61
|
+
end
|
69
62
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
63
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
64
|
+
# @return Array for valid properties with the reasons
|
65
|
+
def list_invalid_properties
|
66
|
+
invalid_properties = Array.new
|
67
|
+
invalid_properties
|
68
|
+
end
|
75
69
|
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
object == o.object &&
|
82
|
-
meta == o.meta
|
83
|
-
end
|
70
|
+
# Check to see if the all the properties in the model are valid
|
71
|
+
# @return true if the model is valid
|
72
|
+
def valid?
|
73
|
+
true
|
74
|
+
end
|
84
75
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
76
|
+
# Checks equality by comparing each attribute.
|
77
|
+
# @param [Object] Object to be compared
|
78
|
+
def ==(o)
|
79
|
+
return true if self.equal?(o)
|
80
|
+
self.class == o.class &&
|
81
|
+
object == o.object &&
|
82
|
+
meta == o.meta
|
83
|
+
end
|
90
84
|
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
85
|
+
# @see the `==` method
|
86
|
+
# @param [Object] Object to be compared
|
87
|
+
def eql?(o)
|
88
|
+
self == o
|
89
|
+
end
|
90
|
+
|
91
|
+
# Calculates hash code according to all attributes.
|
92
|
+
# @return [Integer] Hash code
|
93
|
+
def hash
|
94
|
+
[object, meta].hash
|
95
|
+
end
|
96
96
|
|
97
97
|
require 'active_support/core_ext/hash'
|
98
98
|
require 'active_support/hash_with_indifferent_access.rb'
|
@@ -208,5 +208,6 @@ def _to_hash(value)
|
|
208
208
|
end
|
209
209
|
end
|
210
210
|
|
211
|
-
|
211
|
+
end
|
212
|
+
|
212
213
|
end
|