transferzero-sdk 1.6.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +93 -0
  3. data/README.md +12 -4
  4. data/docs/Currency.md +0 -2
  5. data/docs/CurrencyExchange.md +0 -2
  6. data/docs/CurrencyOpposite.md +3 -3
  7. data/docs/Document.md +2 -0
  8. data/docs/PayoutMethod.md +1 -1
  9. data/docs/PayoutMethodCashProviderEnum.md +16 -0
  10. data/docs/PayoutMethodDetails.md +19 -5
  11. data/docs/PayoutMethodDetailsGBPBank.md +29 -0
  12. data/docs/PayoutMethodDetailsIBAN.md +1 -1
  13. data/docs/PayoutMethodDetailsMobile.md +3 -1
  14. data/docs/PayoutMethodDetailsXOFCash.md +27 -0
  15. data/docs/PayoutMethodDetailsZARBank.md +35 -0
  16. data/docs/ProofOfPayment.md +23 -0
  17. data/docs/ProofOfPaymentListResponse.md +17 -0
  18. data/docs/Recipient.md +3 -1
  19. data/docs/RecipientStateReasonDetails.md +23 -0
  20. data/docs/RecipientsApi.md +63 -1
  21. data/docs/Sender.md +20 -8
  22. data/lib/transferzero-sdk.rb +7 -0
  23. data/lib/transferzero-sdk/api/recipients_api.rb +56 -2
  24. data/lib/transferzero-sdk/api_client.rb +5 -3
  25. data/lib/transferzero-sdk/models/account.rb +70 -69
  26. data/lib/transferzero-sdk/models/account_list_response.rb +67 -66
  27. data/lib/transferzero-sdk/models/account_meta.rb +61 -60
  28. data/lib/transferzero-sdk/models/account_response.rb +66 -65
  29. data/lib/transferzero-sdk/models/account_validation_error.rb +61 -60
  30. data/lib/transferzero-sdk/models/account_validation_request.rb +164 -163
  31. data/lib/transferzero-sdk/models/account_validation_response.rb +66 -65
  32. data/lib/transferzero-sdk/models/account_validation_result.rb +61 -60
  33. data/lib/transferzero-sdk/models/api_log.rb +136 -135
  34. data/lib/transferzero-sdk/models/api_log_list_response.rb +70 -69
  35. data/lib/transferzero-sdk/models/api_log_response.rb +60 -59
  36. data/lib/transferzero-sdk/models/currency.rb +133 -142
  37. data/lib/transferzero-sdk/models/currency_exchange.rb +149 -158
  38. data/lib/transferzero-sdk/models/currency_exchange_list_response.rb +62 -61
  39. data/lib/transferzero-sdk/models/currency_list_response.rb +62 -61
  40. data/lib/transferzero-sdk/models/currency_opposite.rb +166 -165
  41. data/lib/transferzero-sdk/models/debit.rb +151 -150
  42. data/lib/transferzero-sdk/models/debit_list_request.rb +61 -60
  43. data/lib/transferzero-sdk/models/debit_list_response.rb +67 -66
  44. data/lib/transferzero-sdk/models/debit_request.rb +60 -59
  45. data/lib/transferzero-sdk/models/debit_request_wrapper.rb +80 -79
  46. data/lib/transferzero-sdk/models/debit_response.rb +60 -59
  47. data/lib/transferzero-sdk/models/document.rb +180 -169
  48. data/lib/transferzero-sdk/models/document_list_response.rb +67 -66
  49. data/lib/transferzero-sdk/models/document_request.rb +60 -59
  50. data/lib/transferzero-sdk/models/document_response.rb +60 -59
  51. data/lib/transferzero-sdk/models/document_webhook.rb +96 -95
  52. data/lib/transferzero-sdk/models/error_status.rb +66 -65
  53. data/lib/transferzero-sdk/models/field_description.rb +95 -94
  54. data/lib/transferzero-sdk/models/field_select_validation.rb +70 -69
  55. data/lib/transferzero-sdk/models/field_validation.rb +78 -77
  56. data/lib/transferzero-sdk/models/pagination.rb +97 -96
  57. data/lib/transferzero-sdk/models/pagination_meta.rb +60 -59
  58. data/lib/transferzero-sdk/models/payin_method.rb +97 -96
  59. data/lib/transferzero-sdk/models/payin_method_details.rb +122 -121
  60. data/lib/transferzero-sdk/models/payin_method_details_btc.rb +62 -61
  61. data/lib/transferzero-sdk/models/payin_method_details_mobile.rb +75 -74
  62. data/lib/transferzero-sdk/models/payin_method_details_ngn_bank.rb +71 -70
  63. data/lib/transferzero-sdk/models/payin_method_request.rb +60 -59
  64. data/lib/transferzero-sdk/models/payment_method.rb +109 -108
  65. data/lib/transferzero-sdk/models/payment_method_list_response.rb +61 -60
  66. data/lib/transferzero-sdk/models/payment_method_opposite.rb +124 -123
  67. data/lib/transferzero-sdk/models/payout_method.rb +107 -106
  68. data/lib/transferzero-sdk/models/payout_method_bank_account_type_enum.rb +14 -19
  69. data/lib/transferzero-sdk/models/payout_method_cash_provider_enum.rb +31 -0
  70. data/lib/transferzero-sdk/models/payout_method_details.rb +402 -320
  71. data/lib/transferzero-sdk/models/payout_method_details_balance.rb +61 -60
  72. data/lib/transferzero-sdk/models/payout_method_details_btc.rb +97 -96
  73. data/lib/transferzero-sdk/models/payout_method_details_gbp_bank.rb +267 -0
  74. data/lib/transferzero-sdk/models/payout_method_details_ghs_bank.rb +97 -96
  75. data/lib/transferzero-sdk/models/payout_method_details_iban.rb +100 -104
  76. data/lib/transferzero-sdk/models/payout_method_details_mad_cash.rb +162 -161
  77. data/lib/transferzero-sdk/models/payout_method_details_mobile.rb +93 -83
  78. data/lib/transferzero-sdk/models/payout_method_details_ngn_bank.rb +104 -103
  79. data/lib/transferzero-sdk/models/payout_method_details_xof_bank.rb +108 -107
  80. data/lib/transferzero-sdk/models/payout_method_details_xof_cash.rb +263 -0
  81. data/lib/transferzero-sdk/models/payout_method_details_xof_mobile.rb +97 -96
  82. data/lib/transferzero-sdk/models/payout_method_details_zar_bank.rb +324 -0
  83. data/lib/transferzero-sdk/models/payout_method_gender_enum.rb +14 -19
  84. data/lib/transferzero-sdk/models/payout_method_identity_card_type_enum.rb +15 -20
  85. data/lib/transferzero-sdk/models/payout_method_list_response.rb +67 -66
  86. data/lib/transferzero-sdk/models/payout_method_mobile_provider_enum.rb +17 -19
  87. data/lib/transferzero-sdk/models/payout_method_request.rb +60 -59
  88. data/lib/transferzero-sdk/models/payout_method_response.rb +60 -59
  89. data/lib/transferzero-sdk/models/payout_method_webhook.rb +96 -95
  90. data/lib/transferzero-sdk/models/politically_exposed_person.rb +123 -122
  91. data/lib/transferzero-sdk/models/proof_of_payment.rb +233 -0
  92. data/lib/transferzero-sdk/models/proof_of_payment_list_response.rb +204 -0
  93. data/lib/transferzero-sdk/models/recipient.rb +237 -227
  94. data/lib/transferzero-sdk/models/recipient_list_response.rb +67 -66
  95. data/lib/transferzero-sdk/models/recipient_request.rb +60 -59
  96. data/lib/transferzero-sdk/models/recipient_response.rb +60 -59
  97. data/lib/transferzero-sdk/models/recipient_state.rb +22 -27
  98. data/lib/transferzero-sdk/models/recipient_state_reason_details.rb +235 -0
  99. data/lib/transferzero-sdk/models/recipient_webhook.rb +96 -95
  100. data/lib/transferzero-sdk/models/sender.rb +565 -480
  101. data/lib/transferzero-sdk/models/sender_list_response.rb +67 -66
  102. data/lib/transferzero-sdk/models/sender_request.rb +60 -59
  103. data/lib/transferzero-sdk/models/sender_response.rb +66 -65
  104. data/lib/transferzero-sdk/models/sender_response_existing.rb +60 -59
  105. data/lib/transferzero-sdk/models/sender_response_meta.rb +60 -59
  106. data/lib/transferzero-sdk/models/sender_state.rb +19 -24
  107. data/lib/transferzero-sdk/models/sender_webhook.rb +96 -95
  108. data/lib/transferzero-sdk/models/transaction.rb +192 -191
  109. data/lib/transferzero-sdk/models/transaction_list_response.rb +67 -66
  110. data/lib/transferzero-sdk/models/transaction_request.rb +60 -59
  111. data/lib/transferzero-sdk/models/transaction_response.rb +66 -65
  112. data/lib/transferzero-sdk/models/transaction_response_existing.rb +66 -65
  113. data/lib/transferzero-sdk/models/transaction_response_meta.rb +60 -59
  114. data/lib/transferzero-sdk/models/transaction_state.rb +23 -28
  115. data/lib/transferzero-sdk/models/transaction_traits.rb +71 -70
  116. data/lib/transferzero-sdk/models/transaction_webhook.rb +96 -95
  117. data/lib/transferzero-sdk/models/validation_error_description.rb +62 -61
  118. data/lib/transferzero-sdk/models/webhook.rb +92 -91
  119. data/lib/transferzero-sdk/models/webhook_definition.rb +107 -106
  120. data/lib/transferzero-sdk/models/webhook_definition_event_list_response.rb +61 -60
  121. data/lib/transferzero-sdk/models/webhook_definition_list_response.rb +67 -66
  122. data/lib/transferzero-sdk/models/webhook_definition_request.rb +60 -59
  123. data/lib/transferzero-sdk/models/webhook_definition_response.rb +60 -59
  124. data/lib/transferzero-sdk/models/webhook_log.rb +97 -96
  125. data/lib/transferzero-sdk/models/webhook_log_list_response.rb +70 -69
  126. data/lib/transferzero-sdk/models/webhook_log_metadata.rb +129 -128
  127. data/lib/transferzero-sdk/models/webhook_log_metadata_request.rb +80 -79
  128. data/lib/transferzero-sdk/models/webhook_log_metadata_response.rb +81 -80
  129. data/lib/transferzero-sdk/models/webhook_log_response.rb +60 -59
  130. data/lib/transferzero-sdk/version.rb +1 -1
  131. data/spec/models/payout_method_cash_provider_enum_spec.rb +35 -0
  132. data/spec/models/payout_method_details_gbp_bank_spec.rb +77 -0
  133. data/spec/models/payout_method_details_xof_cash_spec.rb +71 -0
  134. data/spec/models/payout_method_details_zar_bank_spec.rb +89 -0
  135. data/spec/models/proof_of_payment_list_response_spec.rb +41 -0
  136. data/spec/models/proof_of_payment_spec.rb +59 -0
  137. data/spec/models/recipient_state_reason_details_spec.rb +59 -0
  138. metadata +32 -3
@@ -0,0 +1,204 @@
1
+ =begin
2
+ #TransferZero API
3
+
4
+ #Reference documentation for the TransferZero API V1
5
+
6
+ OpenAPI spec version: 1.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.0-beta3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module TransferZero
16
+ class ProofOfPaymentListResponse
17
+ attr_accessor :object
18
+
19
+ # Attribute mapping from ruby-style variable name to JSON key.
20
+ def self.attribute_map
21
+ {
22
+ :'object' => :'object'
23
+ }
24
+ end
25
+
26
+ # Attribute type mapping.
27
+ def self.openapi_types
28
+ {
29
+ :'object' => :'Array<ProofOfPayment>'
30
+ }
31
+ end
32
+
33
+ # Initializes the object
34
+ # @param [Hash] attributes Model attributes in the form of hash
35
+ def initialize(attributes = {})
36
+ if (!attributes.is_a?(Hash))
37
+ fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::ProofOfPaymentListResponse` initialize method"
38
+ end
39
+
40
+ # check to see if the attribute exists and convert string to symbol for hash key
41
+ attributes = attributes.each_with_object({}) { |(k, v), h|
42
+ if (!self.class.attribute_map.key?(k.to_sym))
43
+ fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::ProofOfPaymentListResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
44
+ end
45
+ h[k.to_sym] = v
46
+ }
47
+
48
+ if attributes.key?(:'object')
49
+ if (value = attributes[:'object']).is_a?(Array)
50
+ self.object = value
51
+ end
52
+ end
53
+ end
54
+
55
+ # Show invalid properties with the reasons. Usually used together with valid?
56
+ # @return Array for valid properties with the reasons
57
+ def list_invalid_properties
58
+ invalid_properties = Array.new
59
+ invalid_properties
60
+ end
61
+
62
+ # Check to see if the all the properties in the model are valid
63
+ # @return true if the model is valid
64
+ def valid?
65
+ true
66
+ end
67
+
68
+ # Checks equality by comparing each attribute.
69
+ # @param [Object] Object to be compared
70
+ def ==(o)
71
+ return true if self.equal?(o)
72
+ self.class == o.class &&
73
+ object == o.object
74
+ end
75
+
76
+ # @see the `==` method
77
+ # @param [Object] Object to be compared
78
+ def eql?(o)
79
+ self == o
80
+ end
81
+
82
+ # Calculates hash code according to all attributes.
83
+ # @return [Integer] Hash code
84
+ def hash
85
+ [object].hash
86
+ end
87
+
88
+ require 'active_support/core_ext/hash'
89
+ require 'active_support/hash_with_indifferent_access.rb'
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.openapi_types.each_pair do |key, type|
96
+ if type =~ /\AArray<(.*)>/i
97
+ # check to ensure the input is an array given that the 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 = TransferZero.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
+ ::ActiveSupport::HashWithIndifferentAccess.new(hash)
174
+ end
175
+
176
+ def [](key)
177
+ to_hash[key]
178
+ end
179
+
180
+ def dig(*args)
181
+ to_hash.dig(*args)
182
+ end
183
+
184
+ # Outputs non-array value in the form of hash
185
+ # For object, use to_hash. Otherwise, just return the value
186
+ # @param [Object] value Any valid value
187
+ # @return [Hash] Returns the value in the form of hash
188
+ def _to_hash(value)
189
+ if value.is_a?(Array)
190
+ value.compact.map { |v| _to_hash(v) }
191
+ elsif value.is_a?(Hash)
192
+ {}.tap do |hash|
193
+ value.each { |k, v| hash[k] = _to_hash(v) }
194
+ end
195
+ elsif value.respond_to? :to_hash
196
+ value.to_hash
197
+ else
198
+ value
199
+ end
200
+ end
201
+
202
+ end
203
+
204
+ end
@@ -13,290 +13,299 @@ OpenAPI Generator version: 4.0.0-beta3
13
13
  require 'date'
14
14
 
15
15
  module TransferZero
16
- # The recipient describes the amount, the currency and the destination where the money should be sent.
17
- class Recipient
18
- # the amount that should be paid to the recipient. This can be in any currency, usually either the input or the output currency. If the value here is not the output currency we will calculate how much the recipient is going to get using the exchange rates active when the transaction was created.
19
- attr_accessor :requested_amount
16
+ # The recipient describes the amount, the currency and the destination where the money should be sent.
17
+ class Recipient
18
+ # the amount that should be paid to the recipient. This can be in any currency, usually either the input or the output currency. If the value here is not the output currency we will calculate how much the recipient is going to get using the exchange rates active when the transaction was created.
19
+ attr_accessor :requested_amount
20
20
 
21
- # the currency of the amount in 3-character alpha ISO 4217 currency format
22
- attr_accessor :requested_currency
21
+ # the currency of the amount in 3-character alpha ISO 4217 currency format
22
+ attr_accessor :requested_currency
23
23
 
24
- attr_accessor :payout_method
24
+ attr_accessor :payout_method
25
25
 
26
- # Additional metadata that can be added to a recipient. These values will be returned on request
27
- attr_accessor :metadata
26
+ # Additional metadata that can be added to a recipient. These values will be returned on request
27
+ attr_accessor :metadata
28
28
 
29
- # Date and time that the recipient was created.
30
- attr_accessor :created_at
29
+ # Date and time that the recipient was created.
30
+ attr_accessor :created_at
31
31
 
32
- # Shows whether the recipient can be edited using the PATCH /v1/recipients/{id} endpoint or not
33
- attr_accessor :editable
32
+ # Shows whether the recipient can be edited using the PATCH /v1/recipients/{id} endpoint or not
33
+ attr_accessor :editable
34
34
 
35
- # Shows whether the transaction made to the recipient can be retried or not
36
- attr_accessor :retriable
35
+ # Shows whether the transaction made to the recipient can be retried or not
36
+ attr_accessor :retriable
37
37
 
38
- # Shows how much this payment is worth in USD
39
- attr_accessor :input_usd_amount
38
+ # Shows how much this payment is worth in USD
39
+ attr_accessor :input_usd_amount
40
40
 
41
- # Shows whether the payment can be cancelled using the DELETE /v1/recipients/{id} endpoint or not. The payment can not be cancelled if the payout is pending.
42
- attr_accessor :may_cancel
41
+ # If true it shows that the payment can be cancelled immediately using the DELETE /v1/recipients/{id} endpoint. If false you can still try to cancel it, however it will only gets cancelled once we have confirmation from our partner that the payment has failed.
42
+ attr_accessor :may_cancel
43
43
 
44
- # In case the payment is unsuccessful it holds the error message associated with the last unsuccessful payout.
45
- attr_accessor :state_reason
44
+ # In case the payment is unsuccessful it holds the error message associated with the last unsuccessful payout.
45
+ attr_accessor :state_reason
46
46
 
47
- attr_accessor :state
47
+ attr_accessor :state_reason_details
48
48
 
49
- # The ID of the transaction that is related to this recipient
50
- attr_accessor :transaction_id
49
+ attr_accessor :state
51
50
 
52
- attr_accessor :transaction_state
51
+ # The ID of the transaction that is related to this recipient
52
+ attr_accessor :transaction_id
53
53
 
54
- # The exchange rate used in this payment
55
- attr_accessor :exchange_rate
54
+ attr_accessor :transaction_state
56
55
 
57
- # The fee for this payment in fractional units (for example cents for USD transactions)
58
- attr_accessor :fee_fractional
56
+ # The exchange rate used in this payment
57
+ attr_accessor :exchange_rate
59
58
 
60
- # The amount that had to be paid in for this payment to proceed
61
- attr_accessor :input_amount
59
+ # The fee for this payment in fractional units (for example cents for USD transactions)
60
+ attr_accessor :fee_fractional
62
61
 
63
- # The currency this payment was paid in
64
- attr_accessor :input_currency
62
+ # The amount that had to be paid in for this payment to proceed
63
+ attr_accessor :input_amount
65
64
 
66
- # The amount that will be paid to the recipient
67
- attr_accessor :output_amount
65
+ # The currency this payment was paid in
66
+ attr_accessor :input_currency
68
67
 
69
- # The currency the payment will be delivered in
70
- attr_accessor :output_currency
68
+ # The amount that will be paid to the recipient
69
+ attr_accessor :output_amount
71
70
 
72
- attr_accessor :id
71
+ # The currency the payment will be delivered in
72
+ attr_accessor :output_currency
73
73
 
74
- # The fields that have some problems and don't pass validation
75
- attr_accessor :errors
74
+ attr_accessor :id
76
75
 
77
- # Attribute mapping from ruby-style variable name to JSON key.
78
- def self.attribute_map
79
- {
80
- :'requested_amount' => :'requested_amount',
81
- :'requested_currency' => :'requested_currency',
82
- :'payout_method' => :'payout_method',
83
- :'metadata' => :'metadata',
84
- :'created_at' => :'created_at',
85
- :'editable' => :'editable',
86
- :'retriable' => :'retriable',
87
- :'input_usd_amount' => :'input_usd_amount',
88
- :'may_cancel' => :'may_cancel',
89
- :'state_reason' => :'state_reason',
90
- :'state' => :'state',
91
- :'transaction_id' => :'transaction_id',
92
- :'transaction_state' => :'transaction_state',
93
- :'exchange_rate' => :'exchange_rate',
94
- :'fee_fractional' => :'fee_fractional',
95
- :'input_amount' => :'input_amount',
96
- :'input_currency' => :'input_currency',
97
- :'output_amount' => :'output_amount',
98
- :'output_currency' => :'output_currency',
99
- :'id' => :'id',
100
- :'errors' => :'errors'
101
- }
102
- end
103
-
104
- # Attribute type mapping.
105
- def self.openapi_types
106
- {
107
- :'requested_amount' => :'Float',
108
- :'requested_currency' => :'String',
109
- :'payout_method' => :'PayoutMethod',
110
- :'metadata' => :'Object',
111
- :'created_at' => :'DateTime',
112
- :'editable' => :'Boolean',
113
- :'retriable' => :'Boolean',
114
- :'input_usd_amount' => :'Float',
115
- :'may_cancel' => :'Boolean',
116
- :'state_reason' => :'String',
117
- :'state' => :'RecipientState',
118
- :'transaction_id' => :'String',
119
- :'transaction_state' => :'TransactionState',
120
- :'exchange_rate' => :'Float',
121
- :'fee_fractional' => :'Float',
122
- :'input_amount' => :'Float',
123
- :'input_currency' => :'String',
124
- :'output_amount' => :'Float',
125
- :'output_currency' => :'String',
126
- :'id' => :'String',
127
- :'errors' => :'Hash<String, Array<ValidationErrorDescription>>'
128
- }
129
- end
76
+ # The fields that have some problems and don't pass validation
77
+ attr_accessor :errors
130
78
 
131
- # Initializes the object
132
- # @param [Hash] attributes Model attributes in the form of hash
133
- def initialize(attributes = {})
134
- if (!attributes.is_a?(Hash))
135
- fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::Recipient` initialize method"
136
- end
79
+ # Attribute mapping from ruby-style variable name to JSON key.
80
+ def self.attribute_map
81
+ {
82
+ :'requested_amount' => :'requested_amount',
83
+ :'requested_currency' => :'requested_currency',
84
+ :'payout_method' => :'payout_method',
85
+ :'metadata' => :'metadata',
86
+ :'created_at' => :'created_at',
87
+ :'editable' => :'editable',
88
+ :'retriable' => :'retriable',
89
+ :'input_usd_amount' => :'input_usd_amount',
90
+ :'may_cancel' => :'may_cancel',
91
+ :'state_reason' => :'state_reason',
92
+ :'state_reason_details' => :'state_reason_details',
93
+ :'state' => :'state',
94
+ :'transaction_id' => :'transaction_id',
95
+ :'transaction_state' => :'transaction_state',
96
+ :'exchange_rate' => :'exchange_rate',
97
+ :'fee_fractional' => :'fee_fractional',
98
+ :'input_amount' => :'input_amount',
99
+ :'input_currency' => :'input_currency',
100
+ :'output_amount' => :'output_amount',
101
+ :'output_currency' => :'output_currency',
102
+ :'id' => :'id',
103
+ :'errors' => :'errors'
104
+ }
105
+ end
137
106
 
138
- # check to see if the attribute exists and convert string to symbol for hash key
139
- attributes = attributes.each_with_object({}) { |(k, v), h|
140
- if (!self.class.attribute_map.key?(k.to_sym))
141
- fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::Recipient`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
142
- end
143
- h[k.to_sym] = v
144
- }
107
+ # Attribute type mapping.
108
+ def self.openapi_types
109
+ {
110
+ :'requested_amount' => :'Float',
111
+ :'requested_currency' => :'String',
112
+ :'payout_method' => :'PayoutMethod',
113
+ :'metadata' => :'Object',
114
+ :'created_at' => :'DateTime',
115
+ :'editable' => :'Boolean',
116
+ :'retriable' => :'Boolean',
117
+ :'input_usd_amount' => :'Float',
118
+ :'may_cancel' => :'Boolean',
119
+ :'state_reason' => :'String',
120
+ :'state_reason_details' => :'RecipientStateReasonDetails',
121
+ :'state' => :'RecipientState',
122
+ :'transaction_id' => :'String',
123
+ :'transaction_state' => :'TransactionState',
124
+ :'exchange_rate' => :'Float',
125
+ :'fee_fractional' => :'Float',
126
+ :'input_amount' => :'Float',
127
+ :'input_currency' => :'String',
128
+ :'output_amount' => :'Float',
129
+ :'output_currency' => :'String',
130
+ :'id' => :'String',
131
+ :'errors' => :'Hash<String, Array<ValidationErrorDescription>>'
132
+ }
133
+ end
145
134
 
146
- if attributes.key?(:'requested_amount')
147
- self.requested_amount = attributes[:'requested_amount']
148
- end
135
+ # Initializes the object
136
+ # @param [Hash] attributes Model attributes in the form of hash
137
+ def initialize(attributes = {})
138
+ if (!attributes.is_a?(Hash))
139
+ fail ArgumentError, "The input argument (attributes) must be a hash in `TransferZero::Recipient` initialize method"
140
+ end
149
141
 
150
- if attributes.key?(:'requested_currency')
151
- self.requested_currency = attributes[:'requested_currency']
142
+ # check to see if the attribute exists and convert string to symbol for hash key
143
+ attributes = attributes.each_with_object({}) { |(k, v), h|
144
+ if (!self.class.attribute_map.key?(k.to_sym))
145
+ fail ArgumentError, "`#{k}` is not a valid attribute in `TransferZero::Recipient`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
152
146
  end
147
+ h[k.to_sym] = v
148
+ }
153
149
 
154
- if attributes.key?(:'payout_method')
155
- self.payout_method = attributes[:'payout_method']
156
- end
150
+ if attributes.key?(:'requested_amount')
151
+ self.requested_amount = attributes[:'requested_amount']
152
+ end
157
153
 
158
- if attributes.key?(:'metadata')
159
- self.metadata = attributes[:'metadata']
160
- end
154
+ if attributes.key?(:'requested_currency')
155
+ self.requested_currency = attributes[:'requested_currency']
156
+ end
161
157
 
162
- if attributes.key?(:'created_at')
163
- self.created_at = attributes[:'created_at']
164
- end
158
+ if attributes.key?(:'payout_method')
159
+ self.payout_method = attributes[:'payout_method']
160
+ end
165
161
 
166
- if attributes.key?(:'editable')
167
- self.editable = attributes[:'editable']
168
- end
162
+ if attributes.key?(:'metadata')
163
+ self.metadata = attributes[:'metadata']
164
+ end
169
165
 
170
- if attributes.key?(:'retriable')
171
- self.retriable = attributes[:'retriable']
172
- end
166
+ if attributes.key?(:'created_at')
167
+ self.created_at = attributes[:'created_at']
168
+ end
173
169
 
174
- if attributes.key?(:'input_usd_amount')
175
- self.input_usd_amount = attributes[:'input_usd_amount']
176
- end
170
+ if attributes.key?(:'editable')
171
+ self.editable = attributes[:'editable']
172
+ end
177
173
 
178
- if attributes.key?(:'may_cancel')
179
- self.may_cancel = attributes[:'may_cancel']
180
- end
174
+ if attributes.key?(:'retriable')
175
+ self.retriable = attributes[:'retriable']
176
+ end
181
177
 
182
- if attributes.key?(:'state_reason')
183
- self.state_reason = attributes[:'state_reason']
184
- end
178
+ if attributes.key?(:'input_usd_amount')
179
+ self.input_usd_amount = attributes[:'input_usd_amount']
180
+ end
185
181
 
186
- if attributes.key?(:'state')
187
- self.state = attributes[:'state']
188
- end
182
+ if attributes.key?(:'may_cancel')
183
+ self.may_cancel = attributes[:'may_cancel']
184
+ end
189
185
 
190
- if attributes.key?(:'transaction_id')
191
- self.transaction_id = attributes[:'transaction_id']
192
- end
186
+ if attributes.key?(:'state_reason')
187
+ self.state_reason = attributes[:'state_reason']
188
+ end
193
189
 
194
- if attributes.key?(:'transaction_state')
195
- self.transaction_state = attributes[:'transaction_state']
196
- end
190
+ if attributes.key?(:'state_reason_details')
191
+ self.state_reason_details = attributes[:'state_reason_details']
192
+ end
197
193
 
198
- if attributes.key?(:'exchange_rate')
199
- self.exchange_rate = attributes[:'exchange_rate']
200
- end
194
+ if attributes.key?(:'state')
195
+ self.state = attributes[:'state']
196
+ end
201
197
 
202
- if attributes.key?(:'fee_fractional')
203
- self.fee_fractional = attributes[:'fee_fractional']
204
- end
198
+ if attributes.key?(:'transaction_id')
199
+ self.transaction_id = attributes[:'transaction_id']
200
+ end
205
201
 
206
- if attributes.key?(:'input_amount')
207
- self.input_amount = attributes[:'input_amount']
208
- end
202
+ if attributes.key?(:'transaction_state')
203
+ self.transaction_state = attributes[:'transaction_state']
204
+ end
209
205
 
210
- if attributes.key?(:'input_currency')
211
- self.input_currency = attributes[:'input_currency']
212
- end
206
+ if attributes.key?(:'exchange_rate')
207
+ self.exchange_rate = attributes[:'exchange_rate']
208
+ end
213
209
 
214
- if attributes.key?(:'output_amount')
215
- self.output_amount = attributes[:'output_amount']
216
- end
210
+ if attributes.key?(:'fee_fractional')
211
+ self.fee_fractional = attributes[:'fee_fractional']
212
+ end
217
213
 
218
- if attributes.key?(:'output_currency')
219
- self.output_currency = attributes[:'output_currency']
220
- end
214
+ if attributes.key?(:'input_amount')
215
+ self.input_amount = attributes[:'input_amount']
216
+ end
221
217
 
222
- if attributes.key?(:'id')
223
- self.id = attributes[:'id']
224
- end
218
+ if attributes.key?(:'input_currency')
219
+ self.input_currency = attributes[:'input_currency']
220
+ end
225
221
 
226
- if attributes.key?(:'errors')
227
- if (value = attributes[:'errors']).is_a?(Hash)
228
- self.errors = value
229
- end
230
- end
222
+ if attributes.key?(:'output_amount')
223
+ self.output_amount = attributes[:'output_amount']
231
224
  end
232
225
 
233
- # Show invalid properties with the reasons. Usually used together with valid?
234
- # @return Array for valid properties with the reasons
235
- def list_invalid_properties
236
- invalid_properties = Array.new
237
- if @requested_amount.nil?
238
- invalid_properties.push('invalid value for "requested_amount", requested_amount cannot be nil.')
239
- end
226
+ if attributes.key?(:'output_currency')
227
+ self.output_currency = attributes[:'output_currency']
228
+ end
240
229
 
241
- if @requested_currency.nil?
242
- invalid_properties.push('invalid value for "requested_currency", requested_currency cannot be nil.')
243
- end
230
+ if attributes.key?(:'id')
231
+ self.id = attributes[:'id']
232
+ end
244
233
 
245
- if @payout_method.nil?
246
- invalid_properties.push('invalid value for "payout_method", payout_method cannot be nil.')
234
+ if attributes.key?(:'errors')
235
+ if (value = attributes[:'errors']).is_a?(Hash)
236
+ self.errors = value
247
237
  end
248
-
249
- invalid_properties
250
238
  end
239
+ end
251
240
 
252
- # Check to see if the all the properties in the model are valid
253
- # @return true if the model is valid
254
- def valid?
255
- return false if @requested_amount.nil?
256
- return false if @requested_currency.nil?
257
- return false if @payout_method.nil?
258
- true
241
+ # Show invalid properties with the reasons. Usually used together with valid?
242
+ # @return Array for valid properties with the reasons
243
+ def list_invalid_properties
244
+ invalid_properties = Array.new
245
+ if @requested_amount.nil?
246
+ invalid_properties.push('invalid value for "requested_amount", requested_amount cannot be nil.')
259
247
  end
260
248
 
261
- # Checks equality by comparing each attribute.
262
- # @param [Object] Object to be compared
263
- def ==(o)
264
- return true if self.equal?(o)
265
- self.class == o.class &&
266
- requested_amount == o.requested_amount &&
267
- requested_currency == o.requested_currency &&
268
- payout_method == o.payout_method &&
269
- metadata == o.metadata &&
270
- created_at == o.created_at &&
271
- editable == o.editable &&
272
- retriable == o.retriable &&
273
- input_usd_amount == o.input_usd_amount &&
274
- may_cancel == o.may_cancel &&
275
- state_reason == o.state_reason &&
276
- state == o.state &&
277
- transaction_id == o.transaction_id &&
278
- transaction_state == o.transaction_state &&
279
- exchange_rate == o.exchange_rate &&
280
- fee_fractional == o.fee_fractional &&
281
- input_amount == o.input_amount &&
282
- input_currency == o.input_currency &&
283
- output_amount == o.output_amount &&
284
- output_currency == o.output_currency &&
285
- id == o.id &&
286
- errors == o.errors
249
+ if @requested_currency.nil?
250
+ invalid_properties.push('invalid value for "requested_currency", requested_currency cannot be nil.')
287
251
  end
288
252
 
289
- # @see the `==` method
290
- # @param [Object] Object to be compared
291
- def eql?(o)
292
- self == o
253
+ if @payout_method.nil?
254
+ invalid_properties.push('invalid value for "payout_method", payout_method cannot be nil.')
293
255
  end
294
256
 
295
- # Calculates hash code according to all attributes.
296
- # @return [Integer] Hash code
297
- def hash
298
- [requested_amount, requested_currency, payout_method, metadata, created_at, editable, retriable, input_usd_amount, may_cancel, state_reason, state, transaction_id, transaction_state, exchange_rate, fee_fractional, input_amount, input_currency, output_amount, output_currency, id, errors].hash
299
- end
257
+ invalid_properties
258
+ end
259
+
260
+ # Check to see if the all the properties in the model are valid
261
+ # @return true if the model is valid
262
+ def valid?
263
+ return false if @requested_amount.nil?
264
+ return false if @requested_currency.nil?
265
+ return false if @payout_method.nil?
266
+ true
267
+ end
268
+
269
+ # Checks equality by comparing each attribute.
270
+ # @param [Object] Object to be compared
271
+ def ==(o)
272
+ return true if self.equal?(o)
273
+ self.class == o.class &&
274
+ requested_amount == o.requested_amount &&
275
+ requested_currency == o.requested_currency &&
276
+ payout_method == o.payout_method &&
277
+ metadata == o.metadata &&
278
+ created_at == o.created_at &&
279
+ editable == o.editable &&
280
+ retriable == o.retriable &&
281
+ input_usd_amount == o.input_usd_amount &&
282
+ may_cancel == o.may_cancel &&
283
+ state_reason == o.state_reason &&
284
+ state_reason_details == o.state_reason_details &&
285
+ state == o.state &&
286
+ transaction_id == o.transaction_id &&
287
+ transaction_state == o.transaction_state &&
288
+ exchange_rate == o.exchange_rate &&
289
+ fee_fractional == o.fee_fractional &&
290
+ input_amount == o.input_amount &&
291
+ input_currency == o.input_currency &&
292
+ output_amount == o.output_amount &&
293
+ output_currency == o.output_currency &&
294
+ id == o.id &&
295
+ errors == o.errors
296
+ end
297
+
298
+ # @see the `==` method
299
+ # @param [Object] Object to be compared
300
+ def eql?(o)
301
+ self == o
302
+ end
303
+
304
+ # Calculates hash code according to all attributes.
305
+ # @return [Integer] Hash code
306
+ def hash
307
+ [requested_amount, requested_currency, payout_method, metadata, created_at, editable, retriable, input_usd_amount, may_cancel, state_reason, state_reason_details, state, transaction_id, transaction_state, exchange_rate, fee_fractional, input_amount, input_currency, output_amount, output_currency, id, errors].hash
308
+ end
300
309
 
301
310
  require 'active_support/core_ext/hash'
302
311
  require 'active_support/hash_with_indifferent_access.rb'
@@ -412,5 +421,6 @@ def _to_hash(value)
412
421
  end
413
422
  end
414
423
 
415
- end
424
+ end
425
+
416
426
  end