devdraft 1.0.2 → 1.0.3
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 +155 -253
- data/Rakefile +2 -0
- data/devdraft-1.0.0.gem +0 -0
- data/{devdraft_ai_sdk.gemspec → devdraft.gemspec} +15 -11
- data/docs/APIHealthApi.md +82 -30
- data/docs/AggregatedBalanceResponse.md +19 -6
- data/docs/AllBalancesResponse.md +19 -6
- data/docs/AppBalancesApi.md +125 -65
- data/docs/BridgeFiatPaymentRail.md +15 -0
- data/docs/BridgePaymentRail.md +12 -3
- data/docs/CreateBankPaymentIntentDto.md +49 -21
- data/docs/CreateCustomerDto.md +25 -9
- data/docs/CreateDirectBankTransferDto.md +29 -11
- data/docs/CreateDirectWalletTransferDto.md +21 -7
- data/docs/CreateExternalBankTransferDto.md +40 -0
- data/docs/CreateExternalStablecoinTransferDto.md +28 -0
- data/docs/CreateInvoiceDto.md +45 -19
- data/docs/CreateLiquidationAddressDto.md +43 -18
- data/docs/CreatePaymentLinkDto.md +53 -28
- data/docs/CreateStablePaymentIntentDto.md +43 -18
- data/docs/CreateStablecoinConversionDto.md +23 -8
- data/docs/CreateTaxDto.md +26 -0
- data/docs/CreateWebhookDto.md +23 -8
- data/docs/CustomerStatus.md +12 -3
- data/docs/CustomerType.md +15 -0
- data/docs/CustomersApi.md +187 -114
- data/docs/DestinationCurrency.md +12 -3
- data/docs/ExchangeRateResponseDto.md +25 -9
- data/docs/ExchangeRatesApi.md +130 -72
- data/docs/FiatCurrency.md +12 -3
- data/docs/HealthResponseDto.md +25 -9
- data/docs/InvoiceProductDto.md +17 -5
- data/docs/InvoicesApi.md +177 -104
- data/docs/LiquidationAddressResponseDto.md +41 -17
- data/docs/LiquidationAddressesApi.md +115 -61
- data/docs/PaymentIntentsApi.md +93 -57
- data/docs/PaymentLinkProductDto.md +17 -5
- data/docs/PaymentLinksApi.md +175 -102
- data/docs/PaymentRequestDto.md +21 -7
- data/docs/PaymentResponseDto.md +23 -8
- data/docs/ProductsApi.md +307 -194
- data/docs/PublicHealthResponseDto.md +19 -6
- data/docs/RefundResponseDto.md +23 -8
- data/docs/StableCoinCurrency.md +12 -3
- data/docs/TaxControllerCreate201Response.md +30 -0
- data/docs/TaxControllerDeleteWithoutId400Response.md +22 -0
- data/docs/TaxControllerUpdateWithoutId400Response.md +22 -0
- data/docs/TaxesApi.md +374 -122
- data/docs/TestPaymentsApi.md +150 -60
- data/docs/TransfersApi.md +274 -72
- data/docs/UpdateCustomerDto.md +25 -9
- data/docs/UpdateTaxDto.md +26 -0
- data/docs/UpdateWebhookDto.md +23 -8
- data/docs/WalletsApi.md +44 -24
- data/docs/WebhookResponseDto.md +29 -11
- data/docs/WebhooksApi.md +225 -134
- data/git_push.sh +41 -28
- data/lib/devdraft/api/api_health_api.rb +32 -16
- data/lib/devdraft/api/app_balances_api.rb +45 -22
- data/lib/devdraft/api/customers_api.rb +124 -71
- data/lib/devdraft/api/exchange_rates_api.rb +49 -26
- data/lib/devdraft/api/invoices_api.rb +89 -53
- data/lib/devdraft/api/liquidation_addresses_api.rb +70 -44
- data/lib/devdraft/api/payment_intents_api.rb +62 -40
- data/lib/devdraft/api/payment_links_api.rb +85 -49
- data/lib/devdraft/api/products_api.rb +214 -216
- data/lib/devdraft/api/taxes_api.rb +257 -66
- data/lib/devdraft/api/test_payments_api.rb +70 -44
- data/lib/devdraft/api/transfers_api.rb +206 -46
- data/lib/devdraft/api/wallets_api.rb +18 -9
- data/lib/devdraft/api/webhooks_api.rb +109 -66
- data/lib/devdraft/api_client.rb +76 -71
- data/lib/devdraft/api_error.rb +5 -4
- data/lib/devdraft/api_model_base.rb +88 -0
- data/lib/devdraft/configuration.rb +121 -18
- data/lib/devdraft/models/aggregated_balance_response.rb +68 -101
- data/lib/devdraft/models/all_balances_response.rb +76 -99
- data/lib/devdraft/models/bridge_fiat_payment_rail.rb +45 -0
- data/lib/devdraft/models/bridge_payment_rail.rb +36 -24
- data/lib/devdraft/models/create_bank_payment_intent_dto.rb +191 -114
- data/lib/devdraft/models/create_customer_dto.rb +123 -113
- data/lib/devdraft/models/create_direct_bank_transfer_dto.rb +105 -104
- data/lib/devdraft/models/create_direct_wallet_transfer_dto.rb +89 -100
- data/lib/devdraft/models/create_external_bank_transfer_dto.rb +505 -0
- data/lib/devdraft/models/create_external_stablecoin_transfer_dto.rb +266 -0
- data/lib/devdraft/models/create_invoice_dto.rb +151 -121
- data/lib/devdraft/models/create_liquidation_address_dto.rb +195 -115
- data/lib/devdraft/models/create_payment_link_dto.rb +192 -214
- data/lib/devdraft/models/create_stable_payment_intent_dto.rb +324 -111
- data/lib/devdraft/models/create_stablecoin_conversion_dto.rb +102 -101
- data/lib/devdraft/models/create_tax_dto.rb +281 -0
- data/lib/devdraft/models/create_webhook_dto.rb +104 -101
- data/lib/devdraft/models/customer_status.rb +23 -10
- data/lib/devdraft/models/customer_type.rb +45 -0
- data/lib/devdraft/models/destination_currency.rb +27 -15
- data/lib/devdraft/models/exchange_rate_response_dto.rb +103 -102
- data/lib/devdraft/models/fiat_currency.rb +22 -10
- data/lib/devdraft/models/health_response_dto.rb +99 -106
- data/lib/devdraft/models/invoice_product_dto.rb +63 -98
- data/lib/devdraft/models/liquidation_address_response_dto.rb +147 -110
- data/lib/devdraft/models/payment_link_product_dto.rb +70 -98
- data/lib/devdraft/models/payment_request_dto.rb +77 -100
- data/lib/devdraft/models/payment_response_dto.rb +102 -101
- data/lib/devdraft/models/public_health_response_dto.rb +68 -101
- data/lib/devdraft/models/refund_response_dto.rb +102 -101
- data/lib/devdraft/models/stable_coin_currency.rb +21 -9
- data/lib/devdraft/models/tax_controller_create201_response.rb +201 -0
- data/lib/devdraft/models/tax_controller_delete_without_id400_response.rb +165 -0
- data/lib/devdraft/models/tax_controller_update_without_id400_response.rb +165 -0
- data/lib/devdraft/models/update_customer_dto.rb +117 -113
- data/lib/devdraft/models/update_tax_dto.rb +256 -0
- data/lib/devdraft/models/update_webhook_dto.rb +70 -101
- data/lib/devdraft/models/webhook_response_dto.rb +140 -103
- data/lib/devdraft/version.rb +6 -5
- data/lib/devdraft.rb +18 -27
- data/spec/api/api_health_api_spec.rb +10 -9
- data/spec/api/app_balances_api_spec.rb +11 -10
- data/spec/api/customers_api_spec.rb +25 -24
- data/spec/api/exchange_rates_api_spec.rb +11 -10
- data/spec/api/invoices_api_spec.rb +16 -15
- data/spec/api/liquidation_addresses_api_spec.rb +13 -12
- data/spec/api/payment_intents_api_spec.rb +12 -11
- data/spec/api/payment_links_api_spec.rb +14 -13
- data/spec/api/products_api_spec.rb +41 -40
- data/spec/api/taxes_api_spec.rb +51 -21
- data/spec/api/test_payments_api_spec.rb +14 -13
- data/spec/api/transfers_api_spec.rb +36 -13
- data/spec/api/wallets_api_spec.rb +9 -8
- data/spec/api/webhooks_api_spec.rb +20 -19
- data/spec/models/aggregated_balance_response_spec.rb +15 -19
- data/spec/models/all_balances_response_spec.rb +14 -18
- data/spec/models/bridge_fiat_payment_rail_spec.rb +30 -0
- data/spec/models/bridge_payment_rail_spec.rb +11 -15
- data/spec/models/create_bank_payment_intent_dto_spec.rb +29 -33
- data/spec/models/create_customer_dto_spec.rb +17 -25
- data/spec/models/create_direct_bank_transfer_dto_spec.rb +19 -23
- data/spec/models/create_direct_wallet_transfer_dto_spec.rb +15 -19
- data/spec/models/create_external_bank_transfer_dto_spec.rb +102 -0
- data/spec/models/create_external_stablecoin_transfer_dto_spec.rb +66 -0
- data/spec/models/create_invoice_dto_spec.rb +31 -35
- data/spec/models/create_liquidation_address_dto_spec.rb +28 -32
- data/spec/models/create_payment_link_dto_spec.rb +34 -76
- data/spec/models/create_stable_payment_intent_dto_spec.rb +26 -30
- data/spec/models/create_stablecoin_conversion_dto_spec.rb +16 -20
- data/spec/models/create_tax_dto_spec.rb +60 -0
- data/spec/models/create_webhook_dto_spec.rb +16 -20
- data/spec/models/customer_status_spec.rb +11 -15
- data/spec/models/customer_type_spec.rb +30 -0
- data/spec/models/destination_currency_spec.rb +11 -15
- data/spec/models/exchange_rate_response_dto_spec.rb +17 -21
- data/spec/models/fiat_currency_spec.rb +11 -15
- data/spec/models/health_response_dto_spec.rb +19 -23
- data/spec/models/invoice_product_dto_spec.rb +13 -17
- data/spec/models/liquidation_address_response_dto_spec.rb +25 -29
- data/spec/models/payment_link_product_dto_spec.rb +13 -17
- data/spec/models/payment_request_dto_spec.rb +15 -19
- data/spec/models/payment_response_dto_spec.rb +16 -20
- data/spec/models/public_health_response_dto_spec.rb +15 -19
- data/spec/models/refund_response_dto_spec.rb +16 -20
- data/spec/models/stable_coin_currency_spec.rb +11 -15
- data/spec/models/tax_controller_create201_response_spec.rb +72 -0
- data/spec/models/tax_controller_delete_without_id400_response_spec.rb +48 -0
- data/spec/models/tax_controller_update_without_id400_response_spec.rb +48 -0
- data/spec/models/update_customer_dto_spec.rb +17 -25
- data/spec/models/update_tax_dto_spec.rb +60 -0
- data/spec/models/update_webhook_dto_spec.rb +16 -20
- data/spec/models/webhook_response_dto_spec.rb +19 -23
- data/spec/spec_helper.rb +5 -4
- metadata +49 -116
- data/docs/AllOfAllBalancesResponseEurc.md +0 -9
- data/docs/AllOfAllBalancesResponseUsdc.md +0 -9
- data/docs/AllOfCreateBankPaymentIntentDtoDestinationCurrency.md +0 -6
- data/docs/AllOfCreateBankPaymentIntentDtoDestinationNetwork.md +0 -6
- data/docs/AllOfCreateBankPaymentIntentDtoSourceCurrency.md +0 -6
- data/docs/AllOfCreateBankPaymentIntentDtoSourcePaymentRail.md +0 -6
- data/docs/AllOfCreateCustomerDtoStatus.md +0 -6
- data/docs/AllOfCreateLiquidationAddressDtoDestinationCurrency.md +0 -6
- data/docs/AllOfCreateLiquidationAddressDtoDestinationPaymentRail.md +0 -6
- data/docs/AllOfCreateStablePaymentIntentDtoDestinationCurrency.md +0 -6
- data/docs/AllOfCreateStablePaymentIntentDtoDestinationNetwork.md +0 -6
- data/docs/AllOfCreateStablePaymentIntentDtoSourceCurrency.md +0 -6
- data/docs/AllOfCreateStablePaymentIntentDtoSourceNetwork.md +0 -6
- data/docs/AllOfUpdateCustomerDtoStatus.md +0 -6
- data/docs/CreateProductDto.md +0 -18
- data/docs/CreateTaxInput.md +0 -6
- data/docs/UpdatePaymentLinkDto.md +0 -6
- data/docs/UpdatePreferenceInput.md +0 -6
- data/docs/UpdateProductDto.md +0 -18
- data/docs/UpdateTaxInput.md +0 -6
- data/example.rb +0 -129
- data/lib/devdraft/models/all_of_all_balances_response_eurc.rb +0 -283
- data/lib/devdraft/models/all_of_all_balances_response_usdc.rb +0 -283
- data/lib/devdraft/models/all_of_create_bank_payment_intent_dto_destination_currency.rb +0 -202
- data/lib/devdraft/models/all_of_create_bank_payment_intent_dto_destination_network.rb +0 -202
- data/lib/devdraft/models/all_of_create_bank_payment_intent_dto_source_currency.rb +0 -202
- data/lib/devdraft/models/all_of_create_bank_payment_intent_dto_source_payment_rail.rb +0 -202
- data/lib/devdraft/models/all_of_create_customer_dto_status.rb +0 -202
- data/lib/devdraft/models/all_of_create_liquidation_address_dto_destination_currency.rb +0 -202
- data/lib/devdraft/models/all_of_create_liquidation_address_dto_destination_payment_rail.rb +0 -202
- data/lib/devdraft/models/all_of_create_stable_payment_intent_dto_destination_currency.rb +0 -202
- data/lib/devdraft/models/all_of_create_stable_payment_intent_dto_destination_network.rb +0 -202
- data/lib/devdraft/models/all_of_create_stable_payment_intent_dto_source_currency.rb +0 -202
- data/lib/devdraft/models/all_of_create_stable_payment_intent_dto_source_network.rb +0 -202
- data/lib/devdraft/models/all_of_update_customer_dto_status.rb +0 -202
- data/lib/devdraft/models/create_product_dto.rb +0 -370
- data/lib/devdraft/models/create_tax_input.rb +0 -197
- data/lib/devdraft/models/update_payment_link_dto.rb +0 -197
- data/lib/devdraft/models/update_preference_input.rb +0 -197
- data/lib/devdraft/models/update_product_dto.rb +0 -355
- data/lib/devdraft/models/update_tax_input.rb +0 -197
- data/spec/api_client_spec.rb +0 -225
- data/spec/base_object_spec.rb +0 -109
- data/spec/configuration_spec.rb +0 -41
- data/spec/models/all_of_all_balances_response_eurc_spec.rb +0 -56
- data/spec/models/all_of_all_balances_response_usdc_spec.rb +0 -56
- data/spec/models/all_of_create_bank_payment_intent_dto_destination_currency_spec.rb +0 -34
- data/spec/models/all_of_create_bank_payment_intent_dto_destination_network_spec.rb +0 -34
- data/spec/models/all_of_create_bank_payment_intent_dto_source_currency_spec.rb +0 -34
- data/spec/models/all_of_create_bank_payment_intent_dto_source_payment_rail_spec.rb +0 -34
- data/spec/models/all_of_create_customer_dto_status_spec.rb +0 -34
- data/spec/models/all_of_create_liquidation_address_dto_destination_currency_spec.rb +0 -34
- data/spec/models/all_of_create_liquidation_address_dto_destination_payment_rail_spec.rb +0 -34
- data/spec/models/all_of_create_stable_payment_intent_dto_destination_currency_spec.rb +0 -34
- data/spec/models/all_of_create_stable_payment_intent_dto_destination_network_spec.rb +0 -34
- data/spec/models/all_of_create_stable_payment_intent_dto_source_currency_spec.rb +0 -34
- data/spec/models/all_of_create_stable_payment_intent_dto_source_network_spec.rb +0 -34
- data/spec/models/all_of_update_customer_dto_status_spec.rb +0 -34
- data/spec/models/create_product_dto_spec.rb +0 -110
- data/spec/models/create_tax_input_spec.rb +0 -34
- data/spec/models/update_payment_link_dto_spec.rb +0 -34
- data/spec/models/update_preference_input_spec.rb +0 -34
- data/spec/models/update_product_dto_spec.rb +0 -110
- data/spec/models/update_tax_input_spec.rb +0 -34
|
@@ -3,16 +3,18 @@
|
|
|
3
3
|
|
|
4
4
|
# A comprehensive payment processing and business management API that enables seamless integration of cryptocurrency and traditional payment methods.
|
|
5
5
|
|
|
6
|
-
OpenAPI
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0
|
|
7
10
|
|
|
8
|
-
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 3.0.65
|
|
10
11
|
=end
|
|
11
12
|
|
|
12
13
|
require 'date'
|
|
14
|
+
require 'time'
|
|
13
15
|
|
|
14
|
-
module
|
|
15
|
-
class PaymentResponseDto
|
|
16
|
+
module Devdraft
|
|
17
|
+
class PaymentResponseDto < ApiModelBase
|
|
16
18
|
# Payment ID
|
|
17
19
|
attr_accessor :id
|
|
18
20
|
|
|
@@ -39,14 +41,24 @@ module DevDraftAI
|
|
|
39
41
|
}
|
|
40
42
|
end
|
|
41
43
|
|
|
44
|
+
# Returns attribute mapping this model knows about
|
|
45
|
+
def self.acceptable_attribute_map
|
|
46
|
+
attribute_map
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# Returns all the JSON keys this model knows about
|
|
50
|
+
def self.acceptable_attributes
|
|
51
|
+
acceptable_attribute_map.values
|
|
52
|
+
end
|
|
53
|
+
|
|
42
54
|
# Attribute type mapping.
|
|
43
55
|
def self.openapi_types
|
|
44
56
|
{
|
|
45
|
-
:'id' => :'
|
|
46
|
-
:'amount' => :'
|
|
47
|
-
:'currency' => :'
|
|
48
|
-
:'status' => :'
|
|
49
|
-
:'timestamp' => :'
|
|
57
|
+
:'id' => :'String',
|
|
58
|
+
:'amount' => :'Float',
|
|
59
|
+
:'currency' => :'String',
|
|
60
|
+
:'status' => :'String',
|
|
61
|
+
:'timestamp' => :'String'
|
|
50
62
|
}
|
|
51
63
|
end
|
|
52
64
|
|
|
@@ -55,46 +67,58 @@ module DevDraftAI
|
|
|
55
67
|
Set.new([
|
|
56
68
|
])
|
|
57
69
|
end
|
|
58
|
-
|
|
70
|
+
|
|
59
71
|
# Initializes the object
|
|
60
72
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
61
73
|
def initialize(attributes = {})
|
|
62
74
|
if (!attributes.is_a?(Hash))
|
|
63
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `
|
|
75
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Devdraft::PaymentResponseDto` initialize method"
|
|
64
76
|
end
|
|
65
77
|
|
|
66
78
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
79
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
67
80
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
68
|
-
if (!
|
|
69
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `
|
|
81
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
82
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Devdraft::PaymentResponseDto`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
70
83
|
end
|
|
71
84
|
h[k.to_sym] = v
|
|
72
85
|
}
|
|
73
86
|
|
|
74
87
|
if attributes.key?(:'id')
|
|
75
88
|
self.id = attributes[:'id']
|
|
89
|
+
else
|
|
90
|
+
self.id = nil
|
|
76
91
|
end
|
|
77
92
|
|
|
78
93
|
if attributes.key?(:'amount')
|
|
79
94
|
self.amount = attributes[:'amount']
|
|
95
|
+
else
|
|
96
|
+
self.amount = nil
|
|
80
97
|
end
|
|
81
98
|
|
|
82
99
|
if attributes.key?(:'currency')
|
|
83
100
|
self.currency = attributes[:'currency']
|
|
101
|
+
else
|
|
102
|
+
self.currency = nil
|
|
84
103
|
end
|
|
85
104
|
|
|
86
105
|
if attributes.key?(:'status')
|
|
87
106
|
self.status = attributes[:'status']
|
|
107
|
+
else
|
|
108
|
+
self.status = nil
|
|
88
109
|
end
|
|
89
110
|
|
|
90
111
|
if attributes.key?(:'timestamp')
|
|
91
112
|
self.timestamp = attributes[:'timestamp']
|
|
113
|
+
else
|
|
114
|
+
self.timestamp = nil
|
|
92
115
|
end
|
|
93
116
|
end
|
|
94
117
|
|
|
95
118
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
96
119
|
# @return Array for valid properties with the reasons
|
|
97
120
|
def list_invalid_properties
|
|
121
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
98
122
|
invalid_properties = Array.new
|
|
99
123
|
if @id.nil?
|
|
100
124
|
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
|
@@ -122,6 +146,7 @@ module DevDraftAI
|
|
|
122
146
|
# Check to see if the all the properties in the model are valid
|
|
123
147
|
# @return true if the model is valid
|
|
124
148
|
def valid?
|
|
149
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
125
150
|
return false if @id.nil?
|
|
126
151
|
return false if @amount.nil?
|
|
127
152
|
return false if @currency.nil?
|
|
@@ -130,6 +155,56 @@ module DevDraftAI
|
|
|
130
155
|
true
|
|
131
156
|
end
|
|
132
157
|
|
|
158
|
+
# Custom attribute writer method with validation
|
|
159
|
+
# @param [Object] id Value to be assigned
|
|
160
|
+
def id=(id)
|
|
161
|
+
if id.nil?
|
|
162
|
+
fail ArgumentError, 'id cannot be nil'
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
@id = id
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
# Custom attribute writer method with validation
|
|
169
|
+
# @param [Object] amount Value to be assigned
|
|
170
|
+
def amount=(amount)
|
|
171
|
+
if amount.nil?
|
|
172
|
+
fail ArgumentError, 'amount cannot be nil'
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
@amount = amount
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
# Custom attribute writer method with validation
|
|
179
|
+
# @param [Object] currency Value to be assigned
|
|
180
|
+
def currency=(currency)
|
|
181
|
+
if currency.nil?
|
|
182
|
+
fail ArgumentError, 'currency cannot be nil'
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
@currency = currency
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
# Custom attribute writer method with validation
|
|
189
|
+
# @param [Object] status Value to be assigned
|
|
190
|
+
def status=(status)
|
|
191
|
+
if status.nil?
|
|
192
|
+
fail ArgumentError, 'status cannot be nil'
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
@status = status
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
# Custom attribute writer method with validation
|
|
199
|
+
# @param [Object] timestamp Value to be assigned
|
|
200
|
+
def timestamp=(timestamp)
|
|
201
|
+
if timestamp.nil?
|
|
202
|
+
fail ArgumentError, 'timestamp cannot be nil'
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
@timestamp = timestamp
|
|
206
|
+
end
|
|
207
|
+
|
|
133
208
|
# Checks equality by comparing each attribute.
|
|
134
209
|
# @param [Object] Object to be compared
|
|
135
210
|
def ==(o)
|
|
@@ -158,82 +233,23 @@ module DevDraftAI
|
|
|
158
233
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
159
234
|
# @return [Object] Returns the model itself
|
|
160
235
|
def self.build_from_hash(attributes)
|
|
161
|
-
new.build_from_hash(attributes)
|
|
162
|
-
end
|
|
163
|
-
|
|
164
|
-
# Builds the object from hash
|
|
165
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
166
|
-
# @return [Object] Returns the model itself
|
|
167
|
-
def build_from_hash(attributes)
|
|
168
236
|
return nil unless attributes.is_a?(Hash)
|
|
169
|
-
|
|
170
|
-
|
|
237
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
238
|
+
transformed_hash = {}
|
|
239
|
+
openapi_types.each_pair do |key, type|
|
|
240
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
241
|
+
transformed_hash["#{key}"] = nil
|
|
242
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
171
243
|
# check to ensure the input is an array given that the attribute
|
|
172
244
|
# is documented as an array but the input is not
|
|
173
|
-
if attributes[
|
|
174
|
-
|
|
175
|
-
end
|
|
176
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
177
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
178
|
-
elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
179
|
-
self.send("#{key}=", nil)
|
|
180
|
-
end
|
|
181
|
-
end
|
|
182
|
-
|
|
183
|
-
self
|
|
184
|
-
end
|
|
185
|
-
|
|
186
|
-
# Deserializes the data based on type
|
|
187
|
-
# @param string type Data type
|
|
188
|
-
# @param string value Value to be deserialized
|
|
189
|
-
# @return [Object] Deserialized data
|
|
190
|
-
def _deserialize(type, value)
|
|
191
|
-
case type.to_sym
|
|
192
|
-
when :DateTime
|
|
193
|
-
DateTime.parse(value)
|
|
194
|
-
when :Date
|
|
195
|
-
Date.parse(value)
|
|
196
|
-
when :String
|
|
197
|
-
value.to_s
|
|
198
|
-
when :Integer
|
|
199
|
-
value.to_i
|
|
200
|
-
when :Float
|
|
201
|
-
value.to_f
|
|
202
|
-
when :Boolean
|
|
203
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
204
|
-
true
|
|
205
|
-
else
|
|
206
|
-
false
|
|
207
|
-
end
|
|
208
|
-
when :Object
|
|
209
|
-
# generic object (usually a Hash), return directly
|
|
210
|
-
value
|
|
211
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
|
212
|
-
inner_type = Regexp.last_match[:inner_type]
|
|
213
|
-
value.map { |v| _deserialize(inner_type, v) }
|
|
214
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
215
|
-
k_type = Regexp.last_match[:k_type]
|
|
216
|
-
v_type = Regexp.last_match[:v_type]
|
|
217
|
-
{}.tap do |hash|
|
|
218
|
-
value.each do |k, v|
|
|
219
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
245
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
246
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
220
247
|
end
|
|
248
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
249
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
221
250
|
end
|
|
222
|
-
else # model
|
|
223
|
-
DevDraftAI.const_get(type).build_from_hash(value)
|
|
224
251
|
end
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
# Returns the string representation of the object
|
|
228
|
-
# @return [String] String presentation of the object
|
|
229
|
-
def to_s
|
|
230
|
-
to_hash.to_s
|
|
231
|
-
end
|
|
232
|
-
|
|
233
|
-
# to_body is an alias to to_hash (backward compatibility)
|
|
234
|
-
# @return [Hash] Returns the object in the form of hash
|
|
235
|
-
def to_body
|
|
236
|
-
to_hash
|
|
252
|
+
new(transformed_hash)
|
|
237
253
|
end
|
|
238
254
|
|
|
239
255
|
# Returns the object in the form of hash
|
|
@@ -252,21 +268,6 @@ module DevDraftAI
|
|
|
252
268
|
hash
|
|
253
269
|
end
|
|
254
270
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
# @param [Object] value Any valid value
|
|
258
|
-
# @return [Hash] Returns the value in the form of hash
|
|
259
|
-
def _to_hash(value)
|
|
260
|
-
if value.is_a?(Array)
|
|
261
|
-
value.compact.map { |v| _to_hash(v) }
|
|
262
|
-
elsif value.is_a?(Hash)
|
|
263
|
-
{}.tap do |hash|
|
|
264
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
265
|
-
end
|
|
266
|
-
elsif value.respond_to? :to_hash
|
|
267
|
-
value.to_hash
|
|
268
|
-
else
|
|
269
|
-
value
|
|
270
|
-
end
|
|
271
|
-
end end
|
|
271
|
+
end
|
|
272
|
+
|
|
272
273
|
end
|
|
@@ -3,16 +3,18 @@
|
|
|
3
3
|
|
|
4
4
|
# A comprehensive payment processing and business management API that enables seamless integration of cryptocurrency and traditional payment methods.
|
|
5
5
|
|
|
6
|
-
OpenAPI
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0
|
|
7
10
|
|
|
8
|
-
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 3.0.65
|
|
10
11
|
=end
|
|
11
12
|
|
|
12
13
|
require 'date'
|
|
14
|
+
require 'time'
|
|
13
15
|
|
|
14
|
-
module
|
|
15
|
-
class PublicHealthResponseDto
|
|
16
|
+
module Devdraft
|
|
17
|
+
class PublicHealthResponseDto < ApiModelBase
|
|
16
18
|
# Basic health status of the service. Returns \"ok\" when the service is responding.
|
|
17
19
|
attr_accessor :status
|
|
18
20
|
|
|
@@ -53,12 +55,22 @@ module DevDraftAI
|
|
|
53
55
|
}
|
|
54
56
|
end
|
|
55
57
|
|
|
58
|
+
# Returns attribute mapping this model knows about
|
|
59
|
+
def self.acceptable_attribute_map
|
|
60
|
+
attribute_map
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# Returns all the JSON keys this model knows about
|
|
64
|
+
def self.acceptable_attributes
|
|
65
|
+
acceptable_attribute_map.values
|
|
66
|
+
end
|
|
67
|
+
|
|
56
68
|
# Attribute type mapping.
|
|
57
69
|
def self.openapi_types
|
|
58
70
|
{
|
|
59
|
-
:'status' => :'
|
|
60
|
-
:'timestamp' => :'
|
|
61
|
-
:'version' => :'
|
|
71
|
+
:'status' => :'String',
|
|
72
|
+
:'timestamp' => :'Time',
|
|
73
|
+
:'version' => :'String'
|
|
62
74
|
}
|
|
63
75
|
end
|
|
64
76
|
|
|
@@ -67,38 +79,46 @@ module DevDraftAI
|
|
|
67
79
|
Set.new([
|
|
68
80
|
])
|
|
69
81
|
end
|
|
70
|
-
|
|
82
|
+
|
|
71
83
|
# Initializes the object
|
|
72
84
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
73
85
|
def initialize(attributes = {})
|
|
74
86
|
if (!attributes.is_a?(Hash))
|
|
75
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `
|
|
87
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Devdraft::PublicHealthResponseDto` initialize method"
|
|
76
88
|
end
|
|
77
89
|
|
|
78
90
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
91
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
79
92
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
80
|
-
if (!
|
|
81
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `
|
|
93
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
94
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Devdraft::PublicHealthResponseDto`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
82
95
|
end
|
|
83
96
|
h[k.to_sym] = v
|
|
84
97
|
}
|
|
85
98
|
|
|
86
99
|
if attributes.key?(:'status')
|
|
87
100
|
self.status = attributes[:'status']
|
|
101
|
+
else
|
|
102
|
+
self.status = nil
|
|
88
103
|
end
|
|
89
104
|
|
|
90
105
|
if attributes.key?(:'timestamp')
|
|
91
106
|
self.timestamp = attributes[:'timestamp']
|
|
107
|
+
else
|
|
108
|
+
self.timestamp = nil
|
|
92
109
|
end
|
|
93
110
|
|
|
94
111
|
if attributes.key?(:'version')
|
|
95
112
|
self.version = attributes[:'version']
|
|
113
|
+
else
|
|
114
|
+
self.version = nil
|
|
96
115
|
end
|
|
97
116
|
end
|
|
98
117
|
|
|
99
118
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
100
119
|
# @return Array for valid properties with the reasons
|
|
101
120
|
def list_invalid_properties
|
|
121
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
102
122
|
invalid_properties = Array.new
|
|
103
123
|
if @status.nil?
|
|
104
124
|
invalid_properties.push('invalid value for "status", status cannot be nil.')
|
|
@@ -118,8 +138,9 @@ module DevDraftAI
|
|
|
118
138
|
# Check to see if the all the properties in the model are valid
|
|
119
139
|
# @return true if the model is valid
|
|
120
140
|
def valid?
|
|
141
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
121
142
|
return false if @status.nil?
|
|
122
|
-
status_validator = EnumAttributeValidator.new('
|
|
143
|
+
status_validator = EnumAttributeValidator.new('String', ["ok", "error"])
|
|
123
144
|
return false unless status_validator.valid?(@status)
|
|
124
145
|
return false if @timestamp.nil?
|
|
125
146
|
return false if @version.nil?
|
|
@@ -129,13 +150,33 @@ module DevDraftAI
|
|
|
129
150
|
# Custom attribute writer method checking allowed values (enum).
|
|
130
151
|
# @param [Object] status Object to be assigned
|
|
131
152
|
def status=(status)
|
|
132
|
-
validator = EnumAttributeValidator.new('
|
|
153
|
+
validator = EnumAttributeValidator.new('String', ["ok", "error"])
|
|
133
154
|
unless validator.valid?(status)
|
|
134
155
|
fail ArgumentError, "invalid value for \"status\", must be one of #{validator.allowable_values}."
|
|
135
156
|
end
|
|
136
157
|
@status = status
|
|
137
158
|
end
|
|
138
159
|
|
|
160
|
+
# Custom attribute writer method with validation
|
|
161
|
+
# @param [Object] timestamp Value to be assigned
|
|
162
|
+
def timestamp=(timestamp)
|
|
163
|
+
if timestamp.nil?
|
|
164
|
+
fail ArgumentError, 'timestamp cannot be nil'
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
@timestamp = timestamp
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
# Custom attribute writer method with validation
|
|
171
|
+
# @param [Object] version Value to be assigned
|
|
172
|
+
def version=(version)
|
|
173
|
+
if version.nil?
|
|
174
|
+
fail ArgumentError, 'version cannot be nil'
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
@version = version
|
|
178
|
+
end
|
|
179
|
+
|
|
139
180
|
# Checks equality by comparing each attribute.
|
|
140
181
|
# @param [Object] Object to be compared
|
|
141
182
|
def ==(o)
|
|
@@ -162,82 +203,23 @@ module DevDraftAI
|
|
|
162
203
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
163
204
|
# @return [Object] Returns the model itself
|
|
164
205
|
def self.build_from_hash(attributes)
|
|
165
|
-
new.build_from_hash(attributes)
|
|
166
|
-
end
|
|
167
|
-
|
|
168
|
-
# Builds the object from hash
|
|
169
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
170
|
-
# @return [Object] Returns the model itself
|
|
171
|
-
def build_from_hash(attributes)
|
|
172
206
|
return nil unless attributes.is_a?(Hash)
|
|
173
|
-
|
|
174
|
-
|
|
207
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
208
|
+
transformed_hash = {}
|
|
209
|
+
openapi_types.each_pair do |key, type|
|
|
210
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
211
|
+
transformed_hash["#{key}"] = nil
|
|
212
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
175
213
|
# check to ensure the input is an array given that the attribute
|
|
176
214
|
# is documented as an array but the input is not
|
|
177
|
-
if attributes[
|
|
178
|
-
|
|
179
|
-
end
|
|
180
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
181
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
182
|
-
elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
183
|
-
self.send("#{key}=", nil)
|
|
184
|
-
end
|
|
185
|
-
end
|
|
186
|
-
|
|
187
|
-
self
|
|
188
|
-
end
|
|
189
|
-
|
|
190
|
-
# Deserializes the data based on type
|
|
191
|
-
# @param string type Data type
|
|
192
|
-
# @param string value Value to be deserialized
|
|
193
|
-
# @return [Object] Deserialized data
|
|
194
|
-
def _deserialize(type, value)
|
|
195
|
-
case type.to_sym
|
|
196
|
-
when :DateTime
|
|
197
|
-
DateTime.parse(value)
|
|
198
|
-
when :Date
|
|
199
|
-
Date.parse(value)
|
|
200
|
-
when :String
|
|
201
|
-
value.to_s
|
|
202
|
-
when :Integer
|
|
203
|
-
value.to_i
|
|
204
|
-
when :Float
|
|
205
|
-
value.to_f
|
|
206
|
-
when :Boolean
|
|
207
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
208
|
-
true
|
|
209
|
-
else
|
|
210
|
-
false
|
|
211
|
-
end
|
|
212
|
-
when :Object
|
|
213
|
-
# generic object (usually a Hash), return directly
|
|
214
|
-
value
|
|
215
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
|
216
|
-
inner_type = Regexp.last_match[:inner_type]
|
|
217
|
-
value.map { |v| _deserialize(inner_type, v) }
|
|
218
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
219
|
-
k_type = Regexp.last_match[:k_type]
|
|
220
|
-
v_type = Regexp.last_match[:v_type]
|
|
221
|
-
{}.tap do |hash|
|
|
222
|
-
value.each do |k, v|
|
|
223
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
215
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
216
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
224
217
|
end
|
|
218
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
219
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
225
220
|
end
|
|
226
|
-
else # model
|
|
227
|
-
DevDraftAI.const_get(type).build_from_hash(value)
|
|
228
221
|
end
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
# Returns the string representation of the object
|
|
232
|
-
# @return [String] String presentation of the object
|
|
233
|
-
def to_s
|
|
234
|
-
to_hash.to_s
|
|
235
|
-
end
|
|
236
|
-
|
|
237
|
-
# to_body is an alias to to_hash (backward compatibility)
|
|
238
|
-
# @return [Hash] Returns the object in the form of hash
|
|
239
|
-
def to_body
|
|
240
|
-
to_hash
|
|
222
|
+
new(transformed_hash)
|
|
241
223
|
end
|
|
242
224
|
|
|
243
225
|
# Returns the object in the form of hash
|
|
@@ -256,21 +238,6 @@ module DevDraftAI
|
|
|
256
238
|
hash
|
|
257
239
|
end
|
|
258
240
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
# @param [Object] value Any valid value
|
|
262
|
-
# @return [Hash] Returns the value in the form of hash
|
|
263
|
-
def _to_hash(value)
|
|
264
|
-
if value.is_a?(Array)
|
|
265
|
-
value.compact.map { |v| _to_hash(v) }
|
|
266
|
-
elsif value.is_a?(Hash)
|
|
267
|
-
{}.tap do |hash|
|
|
268
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
269
|
-
end
|
|
270
|
-
elsif value.respond_to? :to_hash
|
|
271
|
-
value.to_hash
|
|
272
|
-
else
|
|
273
|
-
value
|
|
274
|
-
end
|
|
275
|
-
end end
|
|
241
|
+
end
|
|
242
|
+
|
|
276
243
|
end
|