jamm 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/jamm/api/api/payment_api.rb +8 -8
- data/lib/jamm/api/models/apiv1_status.rb +239 -0
- data/lib/jamm/api/models/v1_add_charge_request.rb +1 -0
- data/lib/jamm/api/models/v1_add_charge_response.rb +1 -0
- data/lib/jamm/api/models/v1_bank_information.rb +217 -0
- data/lib/jamm/api/models/v1_charge_result.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_with_charge_request.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_with_charge_response.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_without_charge_request.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_without_charge_response.rb +1 -0
- data/lib/jamm/api/models/v1_customer.rb +12 -2
- data/lib/jamm/api/models/v1_kyc_status.rb +44 -0
- data/lib/jamm/api/models/v1_payment_authorization_status.rb +42 -0
- data/lib/jamm/api/models/v1_withdraw_request.rb +1 -0
- data/lib/jamm/api/models/v1_withdraw_response.rb +1 -0
- data/lib/jamm/api.rb +4 -0
- data/lib/jamm/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6078aaa5f3504c091900869e1d978883fc7b125e6ce2eb101330f8a124d780f2
|
4
|
+
data.tar.gz: 8e2b2876e53ca8a7da4d1c9e0f52d02e5e2607cc74654b3cee7fa4eb39662b72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20bd0ebbe9f53d0a57a6319921a6fcdfb7de101e007d0325d6abcec25be72ad0617bec80e837937447231dad4d97ee3c90a7ea0c35483dce52f1d6b079a7a627
|
7
|
+
data.tar.gz: aa38acca7378be10d5b71dedd66b03b1f3a675a98a654e0fbcade89ca55c5e91fd54aacd81670d34dc7eb86a2545a805e01664270a94b59031b9c3070f8b6fc1
|
data/Gemfile.lock
CHANGED
@@ -22,7 +22,7 @@ module Api
|
|
22
22
|
|
23
23
|
# Use existing contract with charge
|
24
24
|
# Use existing contract with charge
|
25
|
-
# @param body [AddChargeRequest]
|
25
|
+
# @param body [AddChargeRequest] This message represents a request to add a charge to an existing customer. It contains all necessary information to process a new payment transaction.
|
26
26
|
# @param [Hash] opts the optional parameters
|
27
27
|
# @return [AddChargeResponse]
|
28
28
|
def add_charge(body, opts = {})
|
@@ -32,7 +32,7 @@ module Api
|
|
32
32
|
|
33
33
|
# Use existing contract with charge
|
34
34
|
# Use existing contract with charge
|
35
|
-
# @param body [AddChargeRequest]
|
35
|
+
# @param body [AddChargeRequest] This message represents a request to add a charge to an existing customer. It contains all necessary information to process a new payment transaction.
|
36
36
|
# @param [Hash] opts the optional parameters
|
37
37
|
# @return [Array<(AddChargeResponse, Integer, Hash)>] AddChargeResponse data, response status code and response headers
|
38
38
|
def add_charge_with_http_info(body, opts = {})
|
@@ -83,7 +83,7 @@ module Api
|
|
83
83
|
|
84
84
|
# Create a contract with initial charge
|
85
85
|
# Create a contract with initial charge
|
86
|
-
# @param body [CreateContractWithChargeRequest]
|
86
|
+
# @param body [CreateContractWithChargeRequest] Request message for creating a new contract with an immediate initial charge. This combines contract creation and charging in a single operation.
|
87
87
|
# @param [Hash] opts the optional parameters
|
88
88
|
# @return [CreateContractWithChargeResponse]
|
89
89
|
def create_contract_with_charge(body, opts = {})
|
@@ -93,7 +93,7 @@ module Api
|
|
93
93
|
|
94
94
|
# Create a contract with initial charge
|
95
95
|
# Create a contract with initial charge
|
96
|
-
# @param body [CreateContractWithChargeRequest]
|
96
|
+
# @param body [CreateContractWithChargeRequest] Request message for creating a new contract with an immediate initial charge. This combines contract creation and charging in a single operation.
|
97
97
|
# @param [Hash] opts the optional parameters
|
98
98
|
# @return [Array<(CreateContractWithChargeResponse, Integer, Hash)>] CreateContractWithChargeResponse data, response status code and response headers
|
99
99
|
def create_contract_with_charge_with_http_info(body, opts = {})
|
@@ -144,7 +144,7 @@ module Api
|
|
144
144
|
|
145
145
|
# Create a contract without initial charge (contract only)
|
146
146
|
# Create a contract without initial charge (contract only)
|
147
|
-
# @param body [CreateContractWithoutChargeRequest]
|
147
|
+
# @param body [CreateContractWithoutChargeRequest] Request message for creating a new contract without an initial charge. This is typically used when setting up a billing relationship before any actual charges are processed.
|
148
148
|
# @param [Hash] opts the optional parameters
|
149
149
|
# @return [CreateContractWithoutChargeResponse]
|
150
150
|
def create_contract_without_charge(body, opts = {})
|
@@ -154,7 +154,7 @@ module Api
|
|
154
154
|
|
155
155
|
# Create a contract without initial charge (contract only)
|
156
156
|
# Create a contract without initial charge (contract only)
|
157
|
-
# @param body [CreateContractWithoutChargeRequest]
|
157
|
+
# @param body [CreateContractWithoutChargeRequest] Request message for creating a new contract without an initial charge. This is typically used when setting up a billing relationship before any actual charges are processed.
|
158
158
|
# @param [Hash] opts the optional parameters
|
159
159
|
# @return [Array<(CreateContractWithoutChargeResponse, Integer, Hash)>] CreateContractWithoutChargeResponse data, response status code and response headers
|
160
160
|
def create_contract_without_charge_with_http_info(body, opts = {})
|
@@ -327,7 +327,7 @@ module Api
|
|
327
327
|
|
328
328
|
# Withdraw money from customer immediately, without redirect
|
329
329
|
# This call is synchronous. The money will be withdrawn immediately.
|
330
|
-
# @param body [WithdrawRequest]
|
330
|
+
# @param body [WithdrawRequest] This message represents a request to withdraw money from a customer. It contains the customer ID and the amount to withdraw.
|
331
331
|
# @param [Hash] opts the optional parameters
|
332
332
|
# @return [WithdrawResponse]
|
333
333
|
def withdraw(body, opts = {})
|
@@ -337,7 +337,7 @@ module Api
|
|
337
337
|
|
338
338
|
# Withdraw money from customer immediately, without redirect
|
339
339
|
# This call is synchronous. The money will be withdrawn immediately.
|
340
|
-
# @param body [WithdrawRequest]
|
340
|
+
# @param body [WithdrawRequest] This message represents a request to withdraw money from a customer. It contains the customer ID and the amount to withdraw.
|
341
341
|
# @param [Hash] opts the optional parameters
|
342
342
|
# @return [Array<(WithdrawResponse, Integer, Hash)>] WithdrawResponse data, response status code and response headers
|
343
343
|
def withdraw_with_http_info(body, opts = {})
|
@@ -0,0 +1,239 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class Apiv1Status
|
18
|
+
attr_accessor :payment, :kyc
|
19
|
+
|
20
|
+
class EnumAttributeValidator
|
21
|
+
attr_reader :datatype, :allowable_values
|
22
|
+
|
23
|
+
def initialize(datatype, allowable_values)
|
24
|
+
@allowable_values = allowable_values.map do |value|
|
25
|
+
case datatype.to_s
|
26
|
+
when /Integer/i
|
27
|
+
value.to_i
|
28
|
+
when /Float/i
|
29
|
+
value.to_f
|
30
|
+
else
|
31
|
+
value
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def valid?(value)
|
37
|
+
!value || allowable_values.include?(value)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
42
|
+
def self.attribute_map
|
43
|
+
{
|
44
|
+
:payment => :payment,
|
45
|
+
:kyc => :kyc
|
46
|
+
}
|
47
|
+
end
|
48
|
+
|
49
|
+
# Returns all the JSON keys this model knows about
|
50
|
+
def self.acceptable_attributes
|
51
|
+
attribute_map.values
|
52
|
+
end
|
53
|
+
|
54
|
+
# Attribute type mapping.
|
55
|
+
def self.openapi_types
|
56
|
+
{
|
57
|
+
:payment => :PaymentAuthorizationStatus,
|
58
|
+
:kyc => :KycStatus
|
59
|
+
}
|
60
|
+
end
|
61
|
+
|
62
|
+
# List of attributes with nullable: true
|
63
|
+
def self.openapi_nullable
|
64
|
+
Set.new([])
|
65
|
+
end
|
66
|
+
|
67
|
+
# Initializes the object
|
68
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
69
|
+
def initialize(attributes = {})
|
70
|
+
raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::Apiv1Status` initialize method' unless attributes.is_a?(Hash)
|
71
|
+
|
72
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
73
|
+
attributes = attributes.each_with_object({}) do |(k, v), h|
|
74
|
+
raise ArgumentError, "`#{k}` is not a valid attribute in `Api::Apiv1Status`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect unless self.class.attribute_map.key?(k.to_sym)
|
75
|
+
|
76
|
+
h[k.to_sym] = v
|
77
|
+
end
|
78
|
+
|
79
|
+
self.payment = if attributes.key?(:payment)
|
80
|
+
attributes[:payment]
|
81
|
+
else
|
82
|
+
'PAYMENT_AUTHORIZATION_STATUS_UNSPECIFIED'
|
83
|
+
end
|
84
|
+
|
85
|
+
self.kyc = if attributes.key?(:kyc)
|
86
|
+
attributes[:kyc]
|
87
|
+
else
|
88
|
+
'KYC_STATUS_UNSPECIFIED'
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
93
|
+
# @return Array for valid properties with the reasons
|
94
|
+
def list_invalid_properties
|
95
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
96
|
+
[]
|
97
|
+
end
|
98
|
+
|
99
|
+
# Check to see if the all the properties in the model are valid
|
100
|
+
# @return true if the model is valid
|
101
|
+
def valid?
|
102
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
103
|
+
true
|
104
|
+
end
|
105
|
+
|
106
|
+
# Checks equality by comparing each attribute.
|
107
|
+
# @param [Object] Object to be compared
|
108
|
+
def ==(other)
|
109
|
+
return true if equal?(other)
|
110
|
+
|
111
|
+
self.class == other.class &&
|
112
|
+
payment == other.payment &&
|
113
|
+
kyc == other.kyc
|
114
|
+
end
|
115
|
+
|
116
|
+
# @see the `==` method
|
117
|
+
# @param [Object] Object to be compared
|
118
|
+
def eql?(other)
|
119
|
+
self == other
|
120
|
+
end
|
121
|
+
|
122
|
+
# Calculates hash code according to all attributes.
|
123
|
+
# @return [Integer] Hash code
|
124
|
+
def hash
|
125
|
+
[payment, kyc].hash
|
126
|
+
end
|
127
|
+
|
128
|
+
# Builds the object from hash
|
129
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
130
|
+
# @return [Object] Returns the model itself
|
131
|
+
def self.build_from_hash(attributes)
|
132
|
+
return nil unless attributes.is_a?(Hash)
|
133
|
+
|
134
|
+
attributes = attributes.transform_keys(&:to_sym)
|
135
|
+
transformed_hash = {}
|
136
|
+
openapi_types.each_pair do |key, type|
|
137
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
138
|
+
transformed_hash[key.to_s] = nil
|
139
|
+
elsif type =~ /\AArray<(.*)>/i
|
140
|
+
# check to ensure the input is an array given that the attribute
|
141
|
+
# is documented as an array but the input is not
|
142
|
+
transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) } if attributes[attribute_map[key]].is_a?(Array)
|
143
|
+
elsif !attributes[attribute_map[key]].nil?
|
144
|
+
transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
|
145
|
+
end
|
146
|
+
end
|
147
|
+
new(transformed_hash)
|
148
|
+
end
|
149
|
+
|
150
|
+
# Deserializes the data based on type
|
151
|
+
# @param string type Data type
|
152
|
+
# @param string value Value to be deserialized
|
153
|
+
# @return [Object] Deserialized data
|
154
|
+
def self._deserialize(type, value)
|
155
|
+
case type.to_sym
|
156
|
+
when :Time
|
157
|
+
Time.parse(value)
|
158
|
+
when :Date
|
159
|
+
Date.parse(value)
|
160
|
+
when :String
|
161
|
+
value.to_s
|
162
|
+
when :Integer
|
163
|
+
value.to_i
|
164
|
+
when :Float
|
165
|
+
value.to_f
|
166
|
+
when :Boolean
|
167
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
168
|
+
true
|
169
|
+
else
|
170
|
+
false
|
171
|
+
end
|
172
|
+
when :Object
|
173
|
+
# generic object (usually a Hash), return directly
|
174
|
+
value
|
175
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
176
|
+
inner_type = Regexp.last_match[:inner_type]
|
177
|
+
value.map { |v| _deserialize(inner_type, v) }
|
178
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
179
|
+
k_type = Regexp.last_match[:k_type]
|
180
|
+
v_type = Regexp.last_match[:v_type]
|
181
|
+
{}.tap do |hash|
|
182
|
+
value.each do |k, v|
|
183
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
184
|
+
end
|
185
|
+
end
|
186
|
+
else # model
|
187
|
+
# models (e.g. Pet) or oneOf
|
188
|
+
klass = Api.const_get(type)
|
189
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
# Returns the string representation of the object
|
194
|
+
# @return [String] String presentation of the object
|
195
|
+
def to_s
|
196
|
+
to_hash.to_s
|
197
|
+
end
|
198
|
+
|
199
|
+
# to_body is an alias to to_hash (backward compatibility)
|
200
|
+
# @return [Hash] Returns the object in the form of hash
|
201
|
+
def to_body
|
202
|
+
to_hash
|
203
|
+
end
|
204
|
+
|
205
|
+
# Returns the object in the form of hash
|
206
|
+
# @return [Hash] Returns the object in the form of hash
|
207
|
+
def to_hash
|
208
|
+
hash = {}
|
209
|
+
self.class.attribute_map.each_pair do |attr, param|
|
210
|
+
value = send(attr)
|
211
|
+
if value.nil?
|
212
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
213
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
214
|
+
end
|
215
|
+
|
216
|
+
hash[param] = _to_hash(value)
|
217
|
+
end
|
218
|
+
hash
|
219
|
+
end
|
220
|
+
|
221
|
+
# Outputs non-array value in the form of hash
|
222
|
+
# For object, use to_hash. Otherwise, just return the value
|
223
|
+
# @param [Object] value Any valid value
|
224
|
+
# @return [Hash] Returns the value in the form of hash
|
225
|
+
def _to_hash(value)
|
226
|
+
if value.is_a?(Array)
|
227
|
+
value.compact.map { |v| _to_hash(v) }
|
228
|
+
elsif value.is_a?(Hash)
|
229
|
+
{}.tap do |hash|
|
230
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
231
|
+
end
|
232
|
+
elsif value.respond_to? :to_hash
|
233
|
+
value.to_hash
|
234
|
+
else
|
235
|
+
value
|
236
|
+
end
|
237
|
+
end
|
238
|
+
end
|
239
|
+
end
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# This message represents a request to add a charge to an existing customer. It contains all necessary information to process a new payment transaction.
|
17
18
|
class AddChargeRequest
|
18
19
|
attr_accessor :customer, :charge, :redirect
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# This message represents the response after processing an AddChargeRequest. It contains information about the created charge, customer details, and a payment link that can be used to complete the payment if needed.
|
17
18
|
class AddChargeResponse
|
18
19
|
attr_accessor :charge, :customer, :payment_link
|
19
20
|
|
@@ -0,0 +1,217 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class BankInformation
|
18
|
+
attr_accessor :account_number, :bank_name, :branch_name
|
19
|
+
|
20
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
21
|
+
def self.attribute_map
|
22
|
+
{
|
23
|
+
:account_number => :accountNumber,
|
24
|
+
:bank_name => :bankName,
|
25
|
+
:branch_name => :branchName
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
# Returns all the JSON keys this model knows about
|
30
|
+
def self.acceptable_attributes
|
31
|
+
attribute_map.values
|
32
|
+
end
|
33
|
+
|
34
|
+
# Attribute type mapping.
|
35
|
+
def self.openapi_types
|
36
|
+
{
|
37
|
+
:account_number => :String,
|
38
|
+
:bank_name => :String,
|
39
|
+
:branch_name => :String
|
40
|
+
}
|
41
|
+
end
|
42
|
+
|
43
|
+
# List of attributes with nullable: true
|
44
|
+
def self.openapi_nullable
|
45
|
+
Set.new([])
|
46
|
+
end
|
47
|
+
|
48
|
+
# Initializes the object
|
49
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
50
|
+
def initialize(attributes = {})
|
51
|
+
raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::BankInformation` initialize method' unless attributes.is_a?(Hash)
|
52
|
+
|
53
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
54
|
+
attributes = attributes.each_with_object({}) do |(k, v), h|
|
55
|
+
raise ArgumentError, "`#{k}` is not a valid attribute in `Api::BankInformation`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect unless self.class.attribute_map.key?(k.to_sym)
|
56
|
+
|
57
|
+
h[k.to_sym] = v
|
58
|
+
end
|
59
|
+
|
60
|
+
self.account_number = attributes[:account_number] if attributes.key?(:account_number)
|
61
|
+
|
62
|
+
self.bank_name = attributes[:bank_name] if attributes.key?(:bank_name)
|
63
|
+
|
64
|
+
return unless attributes.key?(:branch_name)
|
65
|
+
|
66
|
+
self.branch_name = attributes[:branch_name]
|
67
|
+
end
|
68
|
+
|
69
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
70
|
+
# @return Array for valid properties with the reasons
|
71
|
+
def list_invalid_properties
|
72
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
73
|
+
[]
|
74
|
+
end
|
75
|
+
|
76
|
+
# Check to see if the all the properties in the model are valid
|
77
|
+
# @return true if the model is valid
|
78
|
+
def valid?
|
79
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
80
|
+
true
|
81
|
+
end
|
82
|
+
|
83
|
+
# Checks equality by comparing each attribute.
|
84
|
+
# @param [Object] Object to be compared
|
85
|
+
def ==(other)
|
86
|
+
return true if equal?(other)
|
87
|
+
|
88
|
+
self.class == other.class &&
|
89
|
+
account_number == other.account_number &&
|
90
|
+
bank_name == other.bank_name &&
|
91
|
+
branch_name == other.branch_name
|
92
|
+
end
|
93
|
+
|
94
|
+
# @see the `==` method
|
95
|
+
# @param [Object] Object to be compared
|
96
|
+
def eql?(other)
|
97
|
+
self == other
|
98
|
+
end
|
99
|
+
|
100
|
+
# Calculates hash code according to all attributes.
|
101
|
+
# @return [Integer] Hash code
|
102
|
+
def hash
|
103
|
+
[account_number, bank_name, branch_name].hash
|
104
|
+
end
|
105
|
+
|
106
|
+
# Builds the object from hash
|
107
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
108
|
+
# @return [Object] Returns the model itself
|
109
|
+
def self.build_from_hash(attributes)
|
110
|
+
return nil unless attributes.is_a?(Hash)
|
111
|
+
|
112
|
+
attributes = attributes.transform_keys(&:to_sym)
|
113
|
+
transformed_hash = {}
|
114
|
+
openapi_types.each_pair do |key, type|
|
115
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
116
|
+
transformed_hash[key.to_s] = nil
|
117
|
+
elsif type =~ /\AArray<(.*)>/i
|
118
|
+
# check to ensure the input is an array given that the attribute
|
119
|
+
# is documented as an array but the input is not
|
120
|
+
transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) } if attributes[attribute_map[key]].is_a?(Array)
|
121
|
+
elsif !attributes[attribute_map[key]].nil?
|
122
|
+
transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
|
123
|
+
end
|
124
|
+
end
|
125
|
+
new(transformed_hash)
|
126
|
+
end
|
127
|
+
|
128
|
+
# Deserializes the data based on type
|
129
|
+
# @param string type Data type
|
130
|
+
# @param string value Value to be deserialized
|
131
|
+
# @return [Object] Deserialized data
|
132
|
+
def self._deserialize(type, value)
|
133
|
+
case type.to_sym
|
134
|
+
when :Time
|
135
|
+
Time.parse(value)
|
136
|
+
when :Date
|
137
|
+
Date.parse(value)
|
138
|
+
when :String
|
139
|
+
value.to_s
|
140
|
+
when :Integer
|
141
|
+
value.to_i
|
142
|
+
when :Float
|
143
|
+
value.to_f
|
144
|
+
when :Boolean
|
145
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
146
|
+
true
|
147
|
+
else
|
148
|
+
false
|
149
|
+
end
|
150
|
+
when :Object
|
151
|
+
# generic object (usually a Hash), return directly
|
152
|
+
value
|
153
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
154
|
+
inner_type = Regexp.last_match[:inner_type]
|
155
|
+
value.map { |v| _deserialize(inner_type, v) }
|
156
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
157
|
+
k_type = Regexp.last_match[:k_type]
|
158
|
+
v_type = Regexp.last_match[:v_type]
|
159
|
+
{}.tap do |hash|
|
160
|
+
value.each do |k, v|
|
161
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
162
|
+
end
|
163
|
+
end
|
164
|
+
else # model
|
165
|
+
# models (e.g. Pet) or oneOf
|
166
|
+
klass = Api.const_get(type)
|
167
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
# Returns the string representation of the object
|
172
|
+
# @return [String] String presentation of the object
|
173
|
+
def to_s
|
174
|
+
to_hash.to_s
|
175
|
+
end
|
176
|
+
|
177
|
+
# to_body is an alias to to_hash (backward compatibility)
|
178
|
+
# @return [Hash] Returns the object in the form of hash
|
179
|
+
def to_body
|
180
|
+
to_hash
|
181
|
+
end
|
182
|
+
|
183
|
+
# Returns the object in the form of hash
|
184
|
+
# @return [Hash] Returns the object in the form of hash
|
185
|
+
def to_hash
|
186
|
+
hash = {}
|
187
|
+
self.class.attribute_map.each_pair do |attr, param|
|
188
|
+
value = send(attr)
|
189
|
+
if value.nil?
|
190
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
191
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
192
|
+
end
|
193
|
+
|
194
|
+
hash[param] = _to_hash(value)
|
195
|
+
end
|
196
|
+
hash
|
197
|
+
end
|
198
|
+
|
199
|
+
# Outputs non-array value in the form of hash
|
200
|
+
# For object, use to_hash. Otherwise, just return the value
|
201
|
+
# @param [Object] value Any valid value
|
202
|
+
# @return [Hash] Returns the value in the form of hash
|
203
|
+
def _to_hash(value)
|
204
|
+
if value.is_a?(Array)
|
205
|
+
value.compact.map { |v| _to_hash(v) }
|
206
|
+
elsif value.is_a?(Hash)
|
207
|
+
{}.tap do |hash|
|
208
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
209
|
+
end
|
210
|
+
elsif value.respond_to? :to_hash
|
211
|
+
value.to_hash
|
212
|
+
else
|
213
|
+
value
|
214
|
+
end
|
215
|
+
end
|
216
|
+
end
|
217
|
+
end
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Contains the result of a charge operation.
|
17
18
|
class ChargeResult
|
18
19
|
attr_accessor :charge_id, :description, :merchant_name, :initial_amount, :discount, :final_amount, :amount_refunded, :currency, :token_id, :metadata, :created_at, :updated_at, :processed_at
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Request message for creating a new contract with an immediate initial charge. This combines contract creation and charging in a single operation.
|
17
18
|
class CreateContractWithChargeRequest
|
18
19
|
attr_accessor :buyer, :charge, :redirect
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Response message after successfully creating a contract with an initial charge. Contains all information about the created contract, charge, customer, and payment link for further interactions.
|
17
18
|
class CreateContractWithChargeResponse
|
18
19
|
attr_accessor :contract, :charge, :customer, :payment_link
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Request message for creating a new contract without an initial charge. This is typically used when setting up a billing relationship before any actual charges are processed.
|
17
18
|
class CreateContractWithoutChargeRequest
|
18
19
|
attr_accessor :buyer, :redirect
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Response message after successfully creating a contract without a charge. Contains all the information needed for subsequent interactions with the contract and customer.
|
17
18
|
class CreateContractWithoutChargeResponse
|
18
19
|
attr_accessor :contract, :customer, :payment_link
|
19
20
|
|
@@ -16,7 +16,7 @@ require 'time'
|
|
16
16
|
module Api
|
17
17
|
# Customer object.
|
18
18
|
class Customer
|
19
|
-
attr_accessor :id, :email, :activated, :created_at, :updated_at
|
19
|
+
attr_accessor :id, :email, :activated, :status, :bank_information, :created_at, :updated_at
|
20
20
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
22
|
def self.attribute_map
|
@@ -24,6 +24,8 @@ module Api
|
|
24
24
|
:id => :id,
|
25
25
|
:email => :email,
|
26
26
|
:activated => :activated,
|
27
|
+
:status => :status,
|
28
|
+
:bank_information => :bankInformation,
|
27
29
|
:created_at => :createdAt,
|
28
30
|
:updated_at => :updatedAt
|
29
31
|
}
|
@@ -40,6 +42,8 @@ module Api
|
|
40
42
|
:id => :String,
|
41
43
|
:email => :String,
|
42
44
|
:activated => :Boolean,
|
45
|
+
:status => :Apiv1Status,
|
46
|
+
:bank_information => :BankInformation,
|
43
47
|
:created_at => :Time,
|
44
48
|
:updated_at => :Time
|
45
49
|
}
|
@@ -68,6 +72,10 @@ module Api
|
|
68
72
|
|
69
73
|
self.activated = attributes[:activated] if attributes.key?(:activated)
|
70
74
|
|
75
|
+
self.status = attributes[:status] if attributes.key?(:status)
|
76
|
+
|
77
|
+
self.bank_information = attributes[:bank_information] if attributes.key?(:bank_information)
|
78
|
+
|
71
79
|
self.created_at = attributes[:created_at] if attributes.key?(:created_at)
|
72
80
|
|
73
81
|
return unless attributes.key?(:updated_at)
|
@@ -98,6 +106,8 @@ module Api
|
|
98
106
|
id == other.id &&
|
99
107
|
email == other.email &&
|
100
108
|
activated == other.activated &&
|
109
|
+
status == other.status &&
|
110
|
+
bank_information == other.bank_information &&
|
101
111
|
created_at == other.created_at &&
|
102
112
|
updated_at == other.updated_at
|
103
113
|
end
|
@@ -111,7 +121,7 @@ module Api
|
|
111
121
|
# Calculates hash code according to all attributes.
|
112
122
|
# @return [Integer] Hash code
|
113
123
|
def hash
|
114
|
-
[id, email, activated, created_at, updated_at].hash
|
124
|
+
[id, email, activated, status, bank_information, created_at, updated_at].hash
|
115
125
|
end
|
116
126
|
|
117
127
|
# Builds the object from hash
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class KycStatus
|
18
|
+
UNSPECIFIED = 'KYC_STATUS_UNSPECIFIED'
|
19
|
+
APPROVED = 'KYC_STATUS_APPROVED'
|
20
|
+
NOT_SUBMITTED = 'KYC_STATUS_NOT_SUBMITTED'
|
21
|
+
IN_REVIEW = 'KYC_STATUS_IN_REVIEW'
|
22
|
+
DENIED = 'KYC_STATUS_DENIED'
|
23
|
+
|
24
|
+
def self.all_vars
|
25
|
+
@all_vars ||= [UNSPECIFIED, APPROVED, NOT_SUBMITTED, IN_REVIEW, DENIED].freeze
|
26
|
+
end
|
27
|
+
|
28
|
+
# Builds the enum from string
|
29
|
+
# @param [String] The enum value in the form of the string
|
30
|
+
# @return [String] The enum value
|
31
|
+
def self.build_from_hash(value)
|
32
|
+
new.build_from_hash(value)
|
33
|
+
end
|
34
|
+
|
35
|
+
# Builds the enum from string
|
36
|
+
# @param [String] The enum value in the form of the string
|
37
|
+
# @return [String] The enum value
|
38
|
+
def build_from_hash(value)
|
39
|
+
return value if KycStatus.all_vars.include?(value)
|
40
|
+
|
41
|
+
raise "Invalid ENUM value #{value} for class #KycStatus"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class PaymentAuthorizationStatus
|
18
|
+
UNSPECIFIED = 'PAYMENT_AUTHORIZATION_STATUS_UNSPECIFIED'
|
19
|
+
AUTHORIZED = 'PAYMENT_AUTHORIZATION_STATUS_AUTHORIZED'
|
20
|
+
NOT_AUTHORIZED = 'PAYMENT_AUTHORIZATION_STATUS_NOT_AUTHORIZED'
|
21
|
+
|
22
|
+
def self.all_vars
|
23
|
+
@all_vars ||= [UNSPECIFIED, AUTHORIZED, NOT_AUTHORIZED].freeze
|
24
|
+
end
|
25
|
+
|
26
|
+
# Builds the enum from string
|
27
|
+
# @param [String] The enum value in the form of the string
|
28
|
+
# @return [String] The enum value
|
29
|
+
def self.build_from_hash(value)
|
30
|
+
new.build_from_hash(value)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Builds the enum from string
|
34
|
+
# @param [String] The enum value in the form of the string
|
35
|
+
# @return [String] The enum value
|
36
|
+
def build_from_hash(value)
|
37
|
+
return value if PaymentAuthorizationStatus.all_vars.include?(value)
|
38
|
+
|
39
|
+
raise "Invalid ENUM value #{value} for class #PaymentAuthorizationStatus"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
data/lib/jamm/api.rb
CHANGED
@@ -17,11 +17,13 @@ require 'jamm/api/version'
|
|
17
17
|
require 'jamm/api/configuration'
|
18
18
|
|
19
19
|
# Models
|
20
|
+
require 'jamm/api/models/apiv1_status'
|
20
21
|
require 'jamm/api/models/customer_service_update_customer_body'
|
21
22
|
require 'jamm/api/models/googlerpc_status'
|
22
23
|
require 'jamm/api/models/protobuf_any'
|
23
24
|
require 'jamm/api/models/v1_add_charge_request'
|
24
25
|
require 'jamm/api/models/v1_add_charge_response'
|
26
|
+
require 'jamm/api/models/v1_bank_information'
|
25
27
|
require 'jamm/api/models/v1_buyer'
|
26
28
|
require 'jamm/api/models/v1_charge'
|
27
29
|
require 'jamm/api/models/v1_charge_message'
|
@@ -45,11 +47,13 @@ require 'jamm/api/models/v1_get_charges_response'
|
|
45
47
|
require 'jamm/api/models/v1_get_contract_response'
|
46
48
|
require 'jamm/api/models/v1_get_customer_response'
|
47
49
|
require 'jamm/api/models/v1_initial_charge'
|
50
|
+
require 'jamm/api/models/v1_kyc_status'
|
48
51
|
require 'jamm/api/models/v1_merchant'
|
49
52
|
require 'jamm/api/models/v1_merchant_customer'
|
50
53
|
require 'jamm/api/models/v1_merchant_webhook_message'
|
51
54
|
require 'jamm/api/models/v1_message_response'
|
52
55
|
require 'jamm/api/models/v1_pagination'
|
56
|
+
require 'jamm/api/models/v1_payment_authorization_status'
|
53
57
|
require 'jamm/api/models/v1_payment_link'
|
54
58
|
require 'jamm/api/models/v1_ping_response'
|
55
59
|
require 'jamm/api/models/v1_url'
|
data/lib/jamm/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jamm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamm
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -67,11 +67,13 @@ files:
|
|
67
67
|
- lib/jamm/api/api_client.rb
|
68
68
|
- lib/jamm/api/api_error.rb
|
69
69
|
- lib/jamm/api/configuration.rb
|
70
|
+
- lib/jamm/api/models/apiv1_status.rb
|
70
71
|
- lib/jamm/api/models/customer_service_update_customer_body.rb
|
71
72
|
- lib/jamm/api/models/googlerpc_status.rb
|
72
73
|
- lib/jamm/api/models/protobuf_any.rb
|
73
74
|
- lib/jamm/api/models/v1_add_charge_request.rb
|
74
75
|
- lib/jamm/api/models/v1_add_charge_response.rb
|
76
|
+
- lib/jamm/api/models/v1_bank_information.rb
|
75
77
|
- lib/jamm/api/models/v1_buyer.rb
|
76
78
|
- lib/jamm/api/models/v1_charge.rb
|
77
79
|
- lib/jamm/api/models/v1_charge_message.rb
|
@@ -95,11 +97,13 @@ files:
|
|
95
97
|
- lib/jamm/api/models/v1_get_contract_response.rb
|
96
98
|
- lib/jamm/api/models/v1_get_customer_response.rb
|
97
99
|
- lib/jamm/api/models/v1_initial_charge.rb
|
100
|
+
- lib/jamm/api/models/v1_kyc_status.rb
|
98
101
|
- lib/jamm/api/models/v1_merchant.rb
|
99
102
|
- lib/jamm/api/models/v1_merchant_customer.rb
|
100
103
|
- lib/jamm/api/models/v1_merchant_webhook_message.rb
|
101
104
|
- lib/jamm/api/models/v1_message_response.rb
|
102
105
|
- lib/jamm/api/models/v1_pagination.rb
|
106
|
+
- lib/jamm/api/models/v1_payment_authorization_status.rb
|
103
107
|
- lib/jamm/api/models/v1_payment_link.rb
|
104
108
|
- lib/jamm/api/models/v1_ping_response.rb
|
105
109
|
- lib/jamm/api/models/v1_update_customer_response.rb
|