cryptopay-ruby 2.0.0 → 2.1.0
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/.github/workflows/ci.yml +6 -1
- data/.rubocop.yml +3 -0
- data/README.md +60 -0
- data/lib/cryptopay/api/invoices.rb +2 -0
- data/lib/cryptopay/api/subscriptions.rb +99 -0
- data/lib/cryptopay/client.rb +4 -2
- data/lib/cryptopay/models/account.rb +8 -8
- data/lib/cryptopay/models/account_list_result.rb +8 -8
- data/lib/cryptopay/models/callback.rb +3 -1
- data/lib/cryptopay/models/channel.rb +8 -8
- data/lib/cryptopay/models/channel_list_result.rb +8 -8
- data/lib/cryptopay/models/channel_params.rb +8 -8
- data/lib/cryptopay/models/channel_payment.rb +8 -8
- data/lib/cryptopay/models/channel_payment_callback.rb +8 -8
- data/lib/cryptopay/models/channel_payment_list_result.rb +8 -8
- data/lib/cryptopay/models/channel_payment_result.rb +8 -8
- data/lib/cryptopay/models/channel_result.rb +8 -8
- data/lib/cryptopay/models/channel_update_params.rb +8 -8
- data/lib/cryptopay/models/channels_config.rb +8 -8
- data/lib/cryptopay/models/coin.rb +8 -8
- data/lib/cryptopay/models/coin_destination_tag.rb +8 -8
- data/lib/cryptopay/models/coin_list_result.rb +8 -8
- data/lib/cryptopay/models/coin_network.rb +8 -8
- data/lib/cryptopay/models/coin_withdrawal.rb +8 -8
- data/lib/cryptopay/models/coin_withdrawal_callback.rb +8 -8
- data/lib/cryptopay/models/coin_withdrawal_list_result.rb +8 -8
- data/lib/cryptopay/models/coin_withdrawal_params.rb +8 -8
- data/lib/cryptopay/models/coin_withdrawal_result.rb +8 -8
- data/lib/cryptopay/models/coin_withdrawals_config.rb +8 -8
- data/lib/cryptopay/models/customer.rb +8 -8
- data/lib/cryptopay/models/customer_address.rb +8 -8
- data/lib/cryptopay/models/customer_list_result.rb +8 -8
- data/lib/cryptopay/models/customer_params.rb +8 -8
- data/lib/cryptopay/models/customer_result.rb +8 -8
- data/lib/cryptopay/models/customer_update_params.rb +8 -8
- data/lib/cryptopay/models/exchange.rb +8 -8
- data/lib/cryptopay/models/exchange_transfer.rb +8 -8
- data/lib/cryptopay/models/exchange_transfer_params.rb +8 -8
- data/lib/cryptopay/models/exchange_transfer_result.rb +8 -8
- data/lib/cryptopay/models/invoice.rb +15 -8
- data/lib/cryptopay/models/invoice_callback.rb +8 -8
- data/lib/cryptopay/models/invoice_list_result.rb +8 -8
- data/lib/cryptopay/models/invoice_params.rb +17 -10
- data/lib/cryptopay/models/invoice_recalculation.rb +8 -8
- data/lib/cryptopay/models/invoice_recalculation_params.rb +8 -8
- data/lib/cryptopay/models/invoice_recalculation_result.rb +8 -8
- data/lib/cryptopay/models/invoice_refund.rb +8 -8
- data/lib/cryptopay/models/invoice_refund_list_result.rb +8 -8
- data/lib/cryptopay/models/invoice_refund_params.rb +8 -8
- data/lib/cryptopay/models/invoice_refund_result.rb +8 -8
- data/lib/cryptopay/models/invoice_result.rb +8 -8
- data/lib/cryptopay/models/invoice_transaction.rb +8 -8
- data/lib/cryptopay/models/invoices_config.rb +8 -8
- data/lib/cryptopay/models/network_fee.rb +8 -8
- data/lib/cryptopay/models/network_fee_list_result.rb +8 -8
- data/lib/cryptopay/models/pagination.rb +8 -8
- data/lib/cryptopay/models/rate.rb +8 -8
- data/lib/cryptopay/models/rate_result.rb +8 -8
- data/lib/cryptopay/models/rates_result.rb +8 -8
- data/lib/cryptopay/models/risk.rb +8 -8
- data/lib/cryptopay/models/risk_params.rb +8 -8
- data/lib/cryptopay/models/risk_result.rb +8 -8
- data/lib/cryptopay/models/subscription.rb +222 -0
- data/lib/cryptopay/models/subscription_callback.rb +88 -0
- data/lib/cryptopay/models/subscription_callback_event.rb +18 -0
- data/lib/cryptopay/models/subscription_list_result.rb +82 -0
- data/lib/cryptopay/models/subscription_params.rb +159 -0
- data/lib/cryptopay/models/subscription_period.rb +20 -0
- data/lib/cryptopay/models/subscription_result.rb +68 -0
- data/lib/cryptopay/models/subscription_status.rb +18 -0
- data/lib/cryptopay/models/transaction.rb +8 -8
- data/lib/cryptopay/models/transaction_list_result.rb +8 -8
- data/lib/cryptopay/require.rb +9 -0
- data/lib/cryptopay/version.rb +1 -1
- metadata +15 -6
@@ -19,6 +19,14 @@ module Cryptopay
|
|
19
19
|
)
|
20
20
|
private_constant :ENCODER
|
21
21
|
|
22
|
+
# Builds the object from hash
|
23
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
24
|
+
# @return [Cryptopay::CoinDestinationTag] Returns the model itself
|
25
|
+
def self.build_from_hash(data)
|
26
|
+
attributes = ENCODER.build_from_hash(data)
|
27
|
+
new(attributes)
|
28
|
+
end
|
29
|
+
|
22
30
|
# Initializes the object
|
23
31
|
# @param [Hash] attributes Model attributes in the form of hash
|
24
32
|
def initialize(attributes = {})
|
@@ -51,14 +59,6 @@ module Cryptopay
|
|
51
59
|
invalid_properties.empty?
|
52
60
|
end
|
53
61
|
|
54
|
-
# Builds the object from hash
|
55
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
56
|
-
# @return [Cryptopay::CoinDestinationTag] Returns the model itself
|
57
|
-
def self.build_from_hash(data)
|
58
|
-
attributes = ENCODER.build_from_hash(data)
|
59
|
-
new(attributes)
|
60
|
-
end
|
61
|
-
|
62
62
|
# Returns the object in the form of hash
|
63
63
|
# @return [Hash] Returns the object in the form of hash
|
64
64
|
def to_hash
|
@@ -17,6 +17,14 @@ module Cryptopay
|
|
17
17
|
)
|
18
18
|
private_constant :ENCODER
|
19
19
|
|
20
|
+
# Builds the object from hash
|
21
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
22
|
+
# @return [Cryptopay::CoinListResult] Returns the model itself
|
23
|
+
def self.build_from_hash(data)
|
24
|
+
attributes = ENCODER.build_from_hash(data)
|
25
|
+
new(attributes)
|
26
|
+
end
|
27
|
+
|
20
28
|
# Initializes the object
|
21
29
|
# @param [Hash] attributes Model attributes in the form of hash
|
22
30
|
def initialize(attributes = {})
|
@@ -49,14 +57,6 @@ module Cryptopay
|
|
49
57
|
invalid_properties.empty?
|
50
58
|
end
|
51
59
|
|
52
|
-
# Builds the object from hash
|
53
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
54
|
-
# @return [Cryptopay::CoinListResult] Returns the model itself
|
55
|
-
def self.build_from_hash(data)
|
56
|
-
attributes = ENCODER.build_from_hash(data)
|
57
|
-
new(attributes)
|
58
|
-
end
|
59
|
-
|
60
60
|
# Returns the object in the form of hash
|
61
61
|
# @return [Hash] Returns the object in the form of hash
|
62
62
|
def to_hash
|
@@ -31,6 +31,14 @@ module Cryptopay
|
|
31
31
|
)
|
32
32
|
private_constant :ENCODER
|
33
33
|
|
34
|
+
# Builds the object from hash
|
35
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
36
|
+
# @return [Cryptopay::CoinNetwork] Returns the model itself
|
37
|
+
def self.build_from_hash(data)
|
38
|
+
attributes = ENCODER.build_from_hash(data)
|
39
|
+
new(attributes)
|
40
|
+
end
|
41
|
+
|
34
42
|
# Initializes the object
|
35
43
|
# @param [Hash] attributes Model attributes in the form of hash
|
36
44
|
def initialize(attributes = {})
|
@@ -107,14 +115,6 @@ module Cryptopay
|
|
107
115
|
invalid_properties.empty?
|
108
116
|
end
|
109
117
|
|
110
|
-
# Builds the object from hash
|
111
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
112
|
-
# @return [Cryptopay::CoinNetwork] Returns the model itself
|
113
|
-
def self.build_from_hash(data)
|
114
|
-
attributes = ENCODER.build_from_hash(data)
|
115
|
-
new(attributes)
|
116
|
-
end
|
117
|
-
|
118
118
|
# Returns the object in the form of hash
|
119
119
|
# @return [Hash] Returns the object in the form of hash
|
120
120
|
def to_hash
|
@@ -56,6 +56,14 @@ module Cryptopay
|
|
56
56
|
)
|
57
57
|
private_constant :ENCODER
|
58
58
|
|
59
|
+
# Builds the object from hash
|
60
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
61
|
+
# @return [Cryptopay::CoinWithdrawal] Returns the model itself
|
62
|
+
def self.build_from_hash(data)
|
63
|
+
attributes = ENCODER.build_from_hash(data)
|
64
|
+
new(attributes)
|
65
|
+
end
|
66
|
+
|
59
67
|
# Initializes the object
|
60
68
|
# @param [Hash] attributes Model attributes in the form of hash
|
61
69
|
def initialize(attributes = {})
|
@@ -204,14 +212,6 @@ module Cryptopay
|
|
204
212
|
invalid_properties.empty?
|
205
213
|
end
|
206
214
|
|
207
|
-
# Builds the object from hash
|
208
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
209
|
-
# @return [Cryptopay::CoinWithdrawal] Returns the model itself
|
210
|
-
def self.build_from_hash(data)
|
211
|
-
attributes = ENCODER.build_from_hash(data)
|
212
|
-
new(attributes)
|
213
|
-
end
|
214
|
-
|
215
215
|
# Returns the object in the form of hash
|
216
216
|
# @return [Hash] Returns the object in the form of hash
|
217
217
|
def to_hash
|
@@ -21,6 +21,14 @@ module Cryptopay
|
|
21
21
|
)
|
22
22
|
private_constant :ENCODER
|
23
23
|
|
24
|
+
# Builds the object from hash
|
25
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
26
|
+
# @return [Cryptopay::CoinWithdrawalCallback] Returns the model itself
|
27
|
+
def self.build_from_hash(data)
|
28
|
+
attributes = ENCODER.build_from_hash(data)
|
29
|
+
new(attributes)
|
30
|
+
end
|
31
|
+
|
24
32
|
# Initializes the object
|
25
33
|
# @param [Hash] attributes Model attributes in the form of hash
|
26
34
|
def initialize(attributes = {})
|
@@ -67,14 +75,6 @@ module Cryptopay
|
|
67
75
|
invalid_properties.empty?
|
68
76
|
end
|
69
77
|
|
70
|
-
# Builds the object from hash
|
71
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
72
|
-
# @return [Cryptopay::CoinWithdrawalCallback] Returns the model itself
|
73
|
-
def self.build_from_hash(data)
|
74
|
-
attributes = ENCODER.build_from_hash(data)
|
75
|
-
new(attributes)
|
76
|
-
end
|
77
|
-
|
78
78
|
# Returns the object in the form of hash
|
79
79
|
# @return [Hash] Returns the object in the form of hash
|
80
80
|
def to_hash
|
@@ -19,6 +19,14 @@ module Cryptopay
|
|
19
19
|
)
|
20
20
|
private_constant :ENCODER
|
21
21
|
|
22
|
+
# Builds the object from hash
|
23
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
24
|
+
# @return [Cryptopay::CoinWithdrawalListResult] Returns the model itself
|
25
|
+
def self.build_from_hash(data)
|
26
|
+
attributes = ENCODER.build_from_hash(data)
|
27
|
+
new(attributes)
|
28
|
+
end
|
29
|
+
|
22
30
|
# Initializes the object
|
23
31
|
# @param [Hash] attributes Model attributes in the form of hash
|
24
32
|
def initialize(attributes = {})
|
@@ -61,14 +69,6 @@ module Cryptopay
|
|
61
69
|
invalid_properties.empty?
|
62
70
|
end
|
63
71
|
|
64
|
-
# Builds the object from hash
|
65
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
66
|
-
# @return [Cryptopay::CoinWithdrawalListResult] Returns the model itself
|
67
|
-
def self.build_from_hash(data)
|
68
|
-
attributes = ENCODER.build_from_hash(data)
|
69
|
-
new(attributes)
|
70
|
-
end
|
71
|
-
|
72
72
|
# Returns the object in the form of hash
|
73
73
|
# @return [Hash] Returns the object in the form of hash
|
74
74
|
def to_hash
|
@@ -41,6 +41,14 @@ module Cryptopay
|
|
41
41
|
)
|
42
42
|
private_constant :ENCODER
|
43
43
|
|
44
|
+
# Builds the object from hash
|
45
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
46
|
+
# @return [Cryptopay::CoinWithdrawalParams] Returns the model itself
|
47
|
+
def self.build_from_hash(data)
|
48
|
+
attributes = ENCODER.build_from_hash(data)
|
49
|
+
new(attributes)
|
50
|
+
end
|
51
|
+
|
44
52
|
# Initializes the object
|
45
53
|
# @param [Hash] attributes Model attributes in the form of hash
|
46
54
|
def initialize(attributes = {})
|
@@ -127,14 +135,6 @@ module Cryptopay
|
|
127
135
|
invalid_properties.empty?
|
128
136
|
end
|
129
137
|
|
130
|
-
# Builds the object from hash
|
131
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
132
|
-
# @return [Cryptopay::CoinWithdrawalParams] Returns the model itself
|
133
|
-
def self.build_from_hash(data)
|
134
|
-
attributes = ENCODER.build_from_hash(data)
|
135
|
-
new(attributes)
|
136
|
-
end
|
137
|
-
|
138
138
|
# Returns the object in the form of hash
|
139
139
|
# @return [Hash] Returns the object in the form of hash
|
140
140
|
def to_hash
|
@@ -17,6 +17,14 @@ module Cryptopay
|
|
17
17
|
)
|
18
18
|
private_constant :ENCODER
|
19
19
|
|
20
|
+
# Builds the object from hash
|
21
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
22
|
+
# @return [Cryptopay::CoinWithdrawalResult] Returns the model itself
|
23
|
+
def self.build_from_hash(data)
|
24
|
+
attributes = ENCODER.build_from_hash(data)
|
25
|
+
new(attributes)
|
26
|
+
end
|
27
|
+
|
20
28
|
# Initializes the object
|
21
29
|
# @param [Hash] attributes Model attributes in the form of hash
|
22
30
|
def initialize(attributes = {})
|
@@ -47,14 +55,6 @@ module Cryptopay
|
|
47
55
|
invalid_properties.empty?
|
48
56
|
end
|
49
57
|
|
50
|
-
# Builds the object from hash
|
51
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
52
|
-
# @return [Cryptopay::CoinWithdrawalResult] Returns the model itself
|
53
|
-
def self.build_from_hash(data)
|
54
|
-
attributes = ENCODER.build_from_hash(data)
|
55
|
-
new(attributes)
|
56
|
-
end
|
57
|
-
|
58
58
|
# Returns the object in the form of hash
|
59
59
|
# @return [Hash] Returns the object in the form of hash
|
60
60
|
def to_hash
|
@@ -17,6 +17,14 @@ module Cryptopay
|
|
17
17
|
)
|
18
18
|
private_constant :ENCODER
|
19
19
|
|
20
|
+
# Builds the object from hash
|
21
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
22
|
+
# @return [Cryptopay::CoinWithdrawalsConfig] Returns the model itself
|
23
|
+
def self.build_from_hash(data)
|
24
|
+
attributes = ENCODER.build_from_hash(data)
|
25
|
+
new(attributes)
|
26
|
+
end
|
27
|
+
|
20
28
|
# Initializes the object
|
21
29
|
# @param [Hash] attributes Model attributes in the form of hash
|
22
30
|
def initialize(attributes = {})
|
@@ -43,14 +51,6 @@ module Cryptopay
|
|
43
51
|
invalid_properties.empty?
|
44
52
|
end
|
45
53
|
|
46
|
-
# Builds the object from hash
|
47
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
48
|
-
# @return [Cryptopay::CoinWithdrawalsConfig] Returns the model itself
|
49
|
-
def self.build_from_hash(data)
|
50
|
-
attributes = ENCODER.build_from_hash(data)
|
51
|
-
new(attributes)
|
52
|
-
end
|
53
|
-
|
54
54
|
# Returns the object in the form of hash
|
55
55
|
# @return [Hash] Returns the object in the form of hash
|
56
56
|
def to_hash
|
@@ -21,6 +21,14 @@ module Cryptopay
|
|
21
21
|
)
|
22
22
|
private_constant :ENCODER
|
23
23
|
|
24
|
+
# Builds the object from hash
|
25
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
26
|
+
# @return [Cryptopay::Customer] Returns the model itself
|
27
|
+
def self.build_from_hash(data)
|
28
|
+
attributes = ENCODER.build_from_hash(data)
|
29
|
+
new(attributes)
|
30
|
+
end
|
31
|
+
|
24
32
|
# Initializes the object
|
25
33
|
# @param [Hash] attributes Model attributes in the form of hash
|
26
34
|
def initialize(attributes = {})
|
@@ -68,14 +76,6 @@ module Cryptopay
|
|
68
76
|
invalid_properties.empty?
|
69
77
|
end
|
70
78
|
|
71
|
-
# Builds the object from hash
|
72
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
73
|
-
# @return [Cryptopay::Customer] Returns the model itself
|
74
|
-
def self.build_from_hash(data)
|
75
|
-
attributes = ENCODER.build_from_hash(data)
|
76
|
-
new(attributes)
|
77
|
-
end
|
78
|
-
|
79
79
|
# Returns the object in the form of hash
|
80
80
|
# @return [Hash] Returns the object in the form of hash
|
81
81
|
def to_hash
|
@@ -21,6 +21,14 @@ module Cryptopay
|
|
21
21
|
)
|
22
22
|
private_constant :ENCODER
|
23
23
|
|
24
|
+
# Builds the object from hash
|
25
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
26
|
+
# @return [Cryptopay::CustomerAddress] Returns the model itself
|
27
|
+
def self.build_from_hash(data)
|
28
|
+
attributes = ENCODER.build_from_hash(data)
|
29
|
+
new(attributes)
|
30
|
+
end
|
31
|
+
|
24
32
|
# Initializes the object
|
25
33
|
# @param [Hash] attributes Model attributes in the form of hash
|
26
34
|
def initialize(attributes = {})
|
@@ -62,14 +70,6 @@ module Cryptopay
|
|
62
70
|
invalid_properties.empty?
|
63
71
|
end
|
64
72
|
|
65
|
-
# Builds the object from hash
|
66
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
67
|
-
# @return [Cryptopay::CustomerAddress] Returns the model itself
|
68
|
-
def self.build_from_hash(data)
|
69
|
-
attributes = ENCODER.build_from_hash(data)
|
70
|
-
new(attributes)
|
71
|
-
end
|
72
|
-
|
73
73
|
# Returns the object in the form of hash
|
74
74
|
# @return [Hash] Returns the object in the form of hash
|
75
75
|
def to_hash
|
@@ -19,6 +19,14 @@ module Cryptopay
|
|
19
19
|
)
|
20
20
|
private_constant :ENCODER
|
21
21
|
|
22
|
+
# Builds the object from hash
|
23
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
24
|
+
# @return [Cryptopay::CustomerListResult] Returns the model itself
|
25
|
+
def self.build_from_hash(data)
|
26
|
+
attributes = ENCODER.build_from_hash(data)
|
27
|
+
new(attributes)
|
28
|
+
end
|
29
|
+
|
22
30
|
# Initializes the object
|
23
31
|
# @param [Hash] attributes Model attributes in the form of hash
|
24
32
|
def initialize(attributes = {})
|
@@ -61,14 +69,6 @@ module Cryptopay
|
|
61
69
|
invalid_properties.empty?
|
62
70
|
end
|
63
71
|
|
64
|
-
# Builds the object from hash
|
65
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
66
|
-
# @return [Cryptopay::CustomerListResult] Returns the model itself
|
67
|
-
def self.build_from_hash(data)
|
68
|
-
attributes = ENCODER.build_from_hash(data)
|
69
|
-
new(attributes)
|
70
|
-
end
|
71
|
-
|
72
72
|
# Returns the object in the form of hash
|
73
73
|
# @return [Hash] Returns the object in the form of hash
|
74
74
|
def to_hash
|
@@ -21,6 +21,14 @@ module Cryptopay
|
|
21
21
|
)
|
22
22
|
private_constant :ENCODER
|
23
23
|
|
24
|
+
# Builds the object from hash
|
25
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
26
|
+
# @return [Cryptopay::CustomerParams] Returns the model itself
|
27
|
+
def self.build_from_hash(data)
|
28
|
+
attributes = ENCODER.build_from_hash(data)
|
29
|
+
new(attributes)
|
30
|
+
end
|
31
|
+
|
24
32
|
# Initializes the object
|
25
33
|
# @param [Hash] attributes Model attributes in the form of hash
|
26
34
|
def initialize(attributes = {})
|
@@ -66,14 +74,6 @@ module Cryptopay
|
|
66
74
|
invalid_properties.empty?
|
67
75
|
end
|
68
76
|
|
69
|
-
# Builds the object from hash
|
70
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
71
|
-
# @return [Cryptopay::CustomerParams] Returns the model itself
|
72
|
-
def self.build_from_hash(data)
|
73
|
-
attributes = ENCODER.build_from_hash(data)
|
74
|
-
new(attributes)
|
75
|
-
end
|
76
|
-
|
77
77
|
# Returns the object in the form of hash
|
78
78
|
# @return [Hash] Returns the object in the form of hash
|
79
79
|
def to_hash
|
@@ -17,6 +17,14 @@ module Cryptopay
|
|
17
17
|
)
|
18
18
|
private_constant :ENCODER
|
19
19
|
|
20
|
+
# Builds the object from hash
|
21
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
22
|
+
# @return [Cryptopay::CustomerResult] Returns the model itself
|
23
|
+
def self.build_from_hash(data)
|
24
|
+
attributes = ENCODER.build_from_hash(data)
|
25
|
+
new(attributes)
|
26
|
+
end
|
27
|
+
|
20
28
|
# Initializes the object
|
21
29
|
# @param [Hash] attributes Model attributes in the form of hash
|
22
30
|
def initialize(attributes = {})
|
@@ -47,14 +55,6 @@ module Cryptopay
|
|
47
55
|
invalid_properties.empty?
|
48
56
|
end
|
49
57
|
|
50
|
-
# Builds the object from hash
|
51
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
52
|
-
# @return [Cryptopay::CustomerResult] Returns the model itself
|
53
|
-
def self.build_from_hash(data)
|
54
|
-
attributes = ENCODER.build_from_hash(data)
|
55
|
-
new(attributes)
|
56
|
-
end
|
57
|
-
|
58
58
|
# Returns the object in the form of hash
|
59
59
|
# @return [Hash] Returns the object in the form of hash
|
60
60
|
def to_hash
|
@@ -19,6 +19,14 @@ module Cryptopay
|
|
19
19
|
)
|
20
20
|
private_constant :ENCODER
|
21
21
|
|
22
|
+
# Builds the object from hash
|
23
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
24
|
+
# @return [Cryptopay::CustomerUpdateParams] Returns the model itself
|
25
|
+
def self.build_from_hash(data)
|
26
|
+
attributes = ENCODER.build_from_hash(data)
|
27
|
+
new(attributes)
|
28
|
+
end
|
29
|
+
|
22
30
|
# Initializes the object
|
23
31
|
# @param [Hash] attributes Model attributes in the form of hash
|
24
32
|
def initialize(attributes = {})
|
@@ -55,14 +63,6 @@ module Cryptopay
|
|
55
63
|
invalid_properties.empty?
|
56
64
|
end
|
57
65
|
|
58
|
-
# Builds the object from hash
|
59
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
60
|
-
# @return [Cryptopay::CustomerUpdateParams] Returns the model itself
|
61
|
-
def self.build_from_hash(data)
|
62
|
-
attributes = ENCODER.build_from_hash(data)
|
63
|
-
new(attributes)
|
64
|
-
end
|
65
|
-
|
66
66
|
# Returns the object in the form of hash
|
67
67
|
# @return [Hash] Returns the object in the form of hash
|
68
68
|
def to_hash
|
@@ -24,6 +24,14 @@ module Cryptopay
|
|
24
24
|
)
|
25
25
|
private_constant :ENCODER
|
26
26
|
|
27
|
+
# Builds the object from hash
|
28
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
29
|
+
# @return [Cryptopay::Exchange] Returns the model itself
|
30
|
+
def self.build_from_hash(data)
|
31
|
+
attributes = ENCODER.build_from_hash(data)
|
32
|
+
new(attributes)
|
33
|
+
end
|
34
|
+
|
27
35
|
# Initializes the object
|
28
36
|
# @param [Hash] attributes Model attributes in the form of hash
|
29
37
|
def initialize(attributes = {})
|
@@ -68,14 +76,6 @@ module Cryptopay
|
|
68
76
|
invalid_properties.empty?
|
69
77
|
end
|
70
78
|
|
71
|
-
# Builds the object from hash
|
72
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
73
|
-
# @return [Cryptopay::Exchange] Returns the model itself
|
74
|
-
def self.build_from_hash(data)
|
75
|
-
attributes = ENCODER.build_from_hash(data)
|
76
|
-
new(attributes)
|
77
|
-
end
|
78
|
-
|
79
79
|
# Returns the object in the form of hash
|
80
80
|
# @return [Hash] Returns the object in the form of hash
|
81
81
|
def to_hash
|
@@ -31,6 +31,14 @@ module Cryptopay
|
|
31
31
|
)
|
32
32
|
private_constant :ENCODER
|
33
33
|
|
34
|
+
# Builds the object from hash
|
35
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
36
|
+
# @return [Cryptopay::ExchangeTransfer] Returns the model itself
|
37
|
+
def self.build_from_hash(data)
|
38
|
+
attributes = ENCODER.build_from_hash(data)
|
39
|
+
new(attributes)
|
40
|
+
end
|
41
|
+
|
34
42
|
# Initializes the object
|
35
43
|
# @param [Hash] attributes Model attributes in the form of hash
|
36
44
|
def initialize(attributes = {})
|
@@ -101,14 +109,6 @@ module Cryptopay
|
|
101
109
|
invalid_properties.empty?
|
102
110
|
end
|
103
111
|
|
104
|
-
# Builds the object from hash
|
105
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
106
|
-
# @return [Cryptopay::ExchangeTransfer] Returns the model itself
|
107
|
-
def self.build_from_hash(data)
|
108
|
-
attributes = ENCODER.build_from_hash(data)
|
109
|
-
new(attributes)
|
110
|
-
end
|
111
|
-
|
112
112
|
# Returns the object in the form of hash
|
113
113
|
# @return [Hash] Returns the object in the form of hash
|
114
114
|
def to_hash
|
@@ -30,6 +30,14 @@ module Cryptopay
|
|
30
30
|
)
|
31
31
|
private_constant :ENCODER
|
32
32
|
|
33
|
+
# Builds the object from hash
|
34
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
35
|
+
# @return [Cryptopay::ExchangeTransferParams] Returns the model itself
|
36
|
+
def self.build_from_hash(data)
|
37
|
+
attributes = ENCODER.build_from_hash(data)
|
38
|
+
new(attributes)
|
39
|
+
end
|
40
|
+
|
33
41
|
# Initializes the object
|
34
42
|
# @param [Hash] attributes Model attributes in the form of hash
|
35
43
|
def initialize(attributes = {})
|
@@ -86,14 +94,6 @@ module Cryptopay
|
|
86
94
|
invalid_properties.empty?
|
87
95
|
end
|
88
96
|
|
89
|
-
# Builds the object from hash
|
90
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
91
|
-
# @return [Cryptopay::ExchangeTransferParams] Returns the model itself
|
92
|
-
def self.build_from_hash(data)
|
93
|
-
attributes = ENCODER.build_from_hash(data)
|
94
|
-
new(attributes)
|
95
|
-
end
|
96
|
-
|
97
97
|
# Returns the object in the form of hash
|
98
98
|
# @return [Hash] Returns the object in the form of hash
|
99
99
|
def to_hash
|
@@ -17,6 +17,14 @@ module Cryptopay
|
|
17
17
|
)
|
18
18
|
private_constant :ENCODER
|
19
19
|
|
20
|
+
# Builds the object from hash
|
21
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
22
|
+
# @return [Cryptopay::ExchangeTransferResult] Returns the model itself
|
23
|
+
def self.build_from_hash(data)
|
24
|
+
attributes = ENCODER.build_from_hash(data)
|
25
|
+
new(attributes)
|
26
|
+
end
|
27
|
+
|
20
28
|
# Initializes the object
|
21
29
|
# @param [Hash] attributes Model attributes in the form of hash
|
22
30
|
def initialize(attributes = {})
|
@@ -47,14 +55,6 @@ module Cryptopay
|
|
47
55
|
invalid_properties.empty?
|
48
56
|
end
|
49
57
|
|
50
|
-
# Builds the object from hash
|
51
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
52
|
-
# @return [Cryptopay::ExchangeTransferResult] Returns the model itself
|
53
|
-
def self.build_from_hash(data)
|
54
|
-
attributes = ENCODER.build_from_hash(data)
|
55
|
-
new(attributes)
|
56
|
-
end
|
57
|
-
|
58
58
|
# Returns the object in the form of hash
|
59
59
|
# @return [Hash] Returns the object in the form of hash
|
60
60
|
def to_hash
|
@@ -11,6 +11,7 @@ module Cryptopay
|
|
11
11
|
'id': :id,
|
12
12
|
'custom_id': :custom_id,
|
13
13
|
'customer_id': :customer_id,
|
14
|
+
'subscription_id': :subscription_id,
|
14
15
|
'status': :status,
|
15
16
|
'status_context': :status_context,
|
16
17
|
'address': :address,
|
@@ -38,6 +39,7 @@ module Cryptopay
|
|
38
39
|
'id': :String,
|
39
40
|
'custom_id': :String,
|
40
41
|
'customer_id': :String,
|
42
|
+
'subscription_id': :String,
|
41
43
|
'status': :InvoiceStatus,
|
42
44
|
'status_context': :InvoiceStatusContext,
|
43
45
|
'address': :String,
|
@@ -64,6 +66,7 @@ module Cryptopay
|
|
64
66
|
nullables: %i[
|
65
67
|
custom_id
|
66
68
|
customer_id
|
69
|
+
subscription_id
|
67
70
|
status_context
|
68
71
|
name
|
69
72
|
description
|
@@ -74,6 +77,14 @@ module Cryptopay
|
|
74
77
|
)
|
75
78
|
private_constant :ENCODER
|
76
79
|
|
80
|
+
# Builds the object from hash
|
81
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
82
|
+
# @return [Cryptopay::Invoice] Returns the model itself
|
83
|
+
def self.build_from_hash(data)
|
84
|
+
attributes = ENCODER.build_from_hash(data)
|
85
|
+
new(attributes)
|
86
|
+
end
|
87
|
+
|
77
88
|
# Initializes the object
|
78
89
|
# @param [Hash] attributes Model attributes in the form of hash
|
79
90
|
def initialize(attributes = {})
|
@@ -95,6 +106,10 @@ module Cryptopay
|
|
95
106
|
@attributes[:customer_id]
|
96
107
|
end
|
97
108
|
|
109
|
+
def subscription_id
|
110
|
+
@attributes[:subscription_id]
|
111
|
+
end
|
112
|
+
|
98
113
|
def status
|
99
114
|
@attributes[:status]
|
100
115
|
end
|
@@ -264,14 +279,6 @@ module Cryptopay
|
|
264
279
|
invalid_properties.empty?
|
265
280
|
end
|
266
281
|
|
267
|
-
# Builds the object from hash
|
268
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
269
|
-
# @return [Cryptopay::Invoice] Returns the model itself
|
270
|
-
def self.build_from_hash(data)
|
271
|
-
attributes = ENCODER.build_from_hash(data)
|
272
|
-
new(attributes)
|
273
|
-
end
|
274
|
-
|
275
282
|
# Returns the object in the form of hash
|
276
283
|
# @return [Hash] Returns the object in the form of hash
|
277
284
|
def to_hash
|
@@ -21,6 +21,14 @@ module Cryptopay
|
|
21
21
|
)
|
22
22
|
private_constant :ENCODER
|
23
23
|
|
24
|
+
# Builds the object from hash
|
25
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
26
|
+
# @return [Cryptopay::InvoiceCallback] Returns the model itself
|
27
|
+
def self.build_from_hash(data)
|
28
|
+
attributes = ENCODER.build_from_hash(data)
|
29
|
+
new(attributes)
|
30
|
+
end
|
31
|
+
|
24
32
|
# Initializes the object
|
25
33
|
# @param [Hash] attributes Model attributes in the form of hash
|
26
34
|
def initialize(attributes = {})
|
@@ -67,14 +75,6 @@ module Cryptopay
|
|
67
75
|
invalid_properties.empty?
|
68
76
|
end
|
69
77
|
|
70
|
-
# Builds the object from hash
|
71
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
72
|
-
# @return [Cryptopay::InvoiceCallback] Returns the model itself
|
73
|
-
def self.build_from_hash(data)
|
74
|
-
attributes = ENCODER.build_from_hash(data)
|
75
|
-
new(attributes)
|
76
|
-
end
|
77
|
-
|
78
78
|
# Returns the object in the form of hash
|
79
79
|
# @return [Hash] Returns the object in the form of hash
|
80
80
|
def to_hash
|