jamm 1.0.8 → 1.0.9

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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +9 -1
  4. data/Rakefile +5 -0
  5. data/lib/jamm/api/api/customer_api.rb +68 -10
  6. data/lib/jamm/api/api/healthcheck_api.rb +2 -2
  7. data/lib/jamm/api/api/payment_api.rb +145 -20
  8. data/lib/jamm/api/api/webhook_service_api.rb +82 -0
  9. data/lib/jamm/api/api_client.rb +2 -2
  10. data/lib/jamm/api/api_error.rb +2 -2
  11. data/lib/jamm/api/configuration.rb +2 -2
  12. data/lib/jamm/api/models/customer_service_update_customer_body.rb +9 -4
  13. data/lib/jamm/api/models/{rpc_status.rb → googlerpc_status.rb} +5 -5
  14. data/lib/jamm/api/models/protobuf_any.rb +2 -2
  15. data/lib/jamm/api/models/v1_add_charge_request.rb +2 -2
  16. data/lib/jamm/api/models/v1_add_charge_response.rb +2 -2
  17. data/lib/jamm/api/models/v1_buyer.rb +11 -3
  18. data/lib/jamm/api/models/v1_charge.rb +2 -2
  19. data/lib/jamm/api/models/v1_charge_message.rb +292 -0
  20. data/lib/jamm/api/models/v1_charge_message_status.rb +44 -0
  21. data/lib/jamm/api/models/v1_charge_result.rb +285 -0
  22. data/lib/jamm/api/models/v1_contract.rb +2 -2
  23. data/lib/jamm/api/models/v1_contract_status.rb +2 -2
  24. data/lib/jamm/api/models/v1_create_contract_with_charge_request.rb +2 -2
  25. data/lib/jamm/api/models/v1_create_contract_with_charge_response.rb +2 -2
  26. data/lib/jamm/api/models/v1_create_contract_without_charge_request.rb +2 -2
  27. data/lib/jamm/api/models/v1_create_contract_without_charge_response.rb +2 -2
  28. data/lib/jamm/api/models/v1_create_customer_request.rb +2 -2
  29. data/lib/jamm/api/models/v1_create_customer_response.rb +2 -2
  30. data/lib/jamm/api/models/v1_customer.rb +9 -4
  31. data/lib/jamm/api/models/v1_delete_customer_response.rb +2 -2
  32. data/lib/jamm/api/models/v1_event_type.rb +45 -0
  33. data/lib/jamm/api/models/v1_get_charge_response.rb +212 -0
  34. data/lib/jamm/api/models/v1_get_charges_response.rb +214 -0
  35. data/lib/jamm/api/models/v1_get_contract_response.rb +13 -13
  36. data/lib/jamm/api/models/v1_get_customer_response.rb +2 -2
  37. data/lib/jamm/api/models/v1_initial_charge.rb +2 -2
  38. data/lib/jamm/api/models/v1_merchant.rb +2 -2
  39. data/lib/jamm/api/models/v1_merchant_customer.rb +2 -2
  40. data/lib/jamm/api/models/v1_merchant_webhook_message.rb +259 -0
  41. data/lib/jamm/api/models/v1_message_response.rb +212 -0
  42. data/lib/jamm/api/models/v1_pagination.rb +212 -0
  43. data/lib/jamm/api/models/v1_payment_link.rb +2 -2
  44. data/lib/jamm/api/models/v1_ping_response.rb +2 -2
  45. data/lib/jamm/api/models/v1_update_customer_response.rb +2 -2
  46. data/lib/jamm/api/models/v1_url.rb +2 -2
  47. data/lib/jamm/api/models/v1_withdraw_request.rb +212 -0
  48. data/lib/jamm/api/models/v1_withdraw_response.rb +212 -0
  49. data/lib/jamm/api/version.rb +2 -2
  50. data/lib/jamm/api.rb +15 -3
  51. data/lib/jamm/api_patches.rb +14 -0
  52. data/lib/jamm/charge.rb +43 -0
  53. data/lib/jamm/client.rb +1 -1
  54. data/lib/jamm/contract.rb +35 -0
  55. data/lib/jamm/customer.rb +24 -9
  56. data/lib/jamm/healthcheck.rb +14 -0
  57. data/lib/jamm/openapi.rb +10 -0
  58. data/lib/jamm/version.rb +1 -1
  59. data/lib/jamm/webhook.rb +35 -0
  60. data/lib/jamm.rb +16 -14
  61. metadata +21 -4
  62. data/lib/jamm/payment.rb +0 -27
@@ -0,0 +1,285 @@
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 ChargeResult
18
+ 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
+ # True when charged.
21
+ attr_accessor :paid
22
+
23
+ # Reason contains enum status in string. Merchant should not write any code depending on the reason, because Jamm may update the reason at any time.
24
+ attr_accessor :reason
25
+
26
+ # Attribute mapping from ruby-style variable name to JSON key.
27
+ def self.attribute_map
28
+ {
29
+ :charge_id => :chargeId,
30
+ :paid => :paid,
31
+ :reason => :reason,
32
+ :description => :description,
33
+ :merchant_name => :merchantName,
34
+ :initial_amount => :initialAmount,
35
+ :discount => :discount,
36
+ :final_amount => :finalAmount,
37
+ :amount_refunded => :amountRefunded,
38
+ :currency => :currency,
39
+ :token_id => :tokenId,
40
+ :metadata => :metadata,
41
+ :created_at => :createdAt,
42
+ :updated_at => :updatedAt,
43
+ :processed_at => :processedAt
44
+ }
45
+ end
46
+
47
+ # Returns all the JSON keys this model knows about
48
+ def self.acceptable_attributes
49
+ attribute_map.values
50
+ end
51
+
52
+ # Attribute type mapping.
53
+ def self.openapi_types
54
+ {
55
+ :charge_id => :String,
56
+ :paid => :Boolean,
57
+ :reason => :String,
58
+ :description => :String,
59
+ :merchant_name => :String,
60
+ :initial_amount => :Integer,
61
+ :discount => :Integer,
62
+ :final_amount => :Integer,
63
+ :amount_refunded => :Integer,
64
+ :currency => :String,
65
+ :token_id => :String,
66
+ :metadata => :'Hash<String, String>',
67
+ :created_at => :Time,
68
+ :updated_at => :Time,
69
+ :processed_at => :Time
70
+ }
71
+ end
72
+
73
+ # List of attributes with nullable: true
74
+ def self.openapi_nullable
75
+ Set.new([])
76
+ end
77
+
78
+ # Initializes the object
79
+ # @param [Hash] attributes Model attributes in the form of hash
80
+ def initialize(attributes = {})
81
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::ChargeResult` initialize method' unless attributes.is_a?(Hash)
82
+
83
+ # check to see if the attribute exists and convert string to symbol for hash key
84
+ attributes = attributes.each_with_object({}) do |(k, v), h|
85
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Api::ChargeResult`. 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)
86
+
87
+ h[k.to_sym] = v
88
+ end
89
+
90
+ self.charge_id = attributes[:charge_id] if attributes.key?(:charge_id)
91
+
92
+ self.paid = attributes[:paid] if attributes.key?(:paid)
93
+
94
+ self.reason = attributes[:reason] if attributes.key?(:reason)
95
+
96
+ self.description = attributes[:description] if attributes.key?(:description)
97
+
98
+ self.merchant_name = attributes[:merchant_name] if attributes.key?(:merchant_name)
99
+
100
+ self.initial_amount = attributes[:initial_amount] if attributes.key?(:initial_amount)
101
+
102
+ self.discount = attributes[:discount] if attributes.key?(:discount)
103
+
104
+ self.final_amount = attributes[:final_amount] if attributes.key?(:final_amount)
105
+
106
+ self.amount_refunded = attributes[:amount_refunded] if attributes.key?(:amount_refunded)
107
+
108
+ self.currency = attributes[:currency] if attributes.key?(:currency)
109
+
110
+ self.token_id = attributes[:token_id] if attributes.key?(:token_id)
111
+
112
+ if attributes.key?(:metadata) && (value = attributes[:metadata]).is_a?(Hash)
113
+ self.metadata = value
114
+ end
115
+
116
+ self.created_at = attributes[:created_at] if attributes.key?(:created_at)
117
+
118
+ self.updated_at = attributes[:updated_at] if attributes.key?(:updated_at)
119
+
120
+ return unless attributes.key?(:processed_at)
121
+
122
+ self.processed_at = attributes[:processed_at]
123
+ end
124
+
125
+ # Show invalid properties with the reasons. Usually used together with valid?
126
+ # @return Array for valid properties with the reasons
127
+ def list_invalid_properties
128
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
129
+ []
130
+ end
131
+
132
+ # Check to see if the all the properties in the model are valid
133
+ # @return true if the model is valid
134
+ def valid?
135
+ warn '[DEPRECATED] the `valid?` method is obsolete'
136
+ true
137
+ end
138
+
139
+ # Checks equality by comparing each attribute.
140
+ # @param [Object] Object to be compared
141
+ def ==(other)
142
+ return true if equal?(other)
143
+
144
+ self.class == other.class &&
145
+ charge_id == other.charge_id &&
146
+ paid == other.paid &&
147
+ reason == other.reason &&
148
+ description == other.description &&
149
+ merchant_name == other.merchant_name &&
150
+ initial_amount == other.initial_amount &&
151
+ discount == other.discount &&
152
+ final_amount == other.final_amount &&
153
+ amount_refunded == other.amount_refunded &&
154
+ currency == other.currency &&
155
+ token_id == other.token_id &&
156
+ metadata == other.metadata &&
157
+ created_at == other.created_at &&
158
+ updated_at == other.updated_at &&
159
+ processed_at == other.processed_at
160
+ end
161
+
162
+ # @see the `==` method
163
+ # @param [Object] Object to be compared
164
+ def eql?(other)
165
+ self == other
166
+ end
167
+
168
+ # Calculates hash code according to all attributes.
169
+ # @return [Integer] Hash code
170
+ def hash
171
+ [charge_id, paid, reason, description, merchant_name, initial_amount, discount, final_amount, amount_refunded, currency, token_id, metadata, created_at, updated_at, processed_at].hash
172
+ end
173
+
174
+ # Builds the object from hash
175
+ # @param [Hash] attributes Model attributes in the form of hash
176
+ # @return [Object] Returns the model itself
177
+ def self.build_from_hash(attributes)
178
+ return nil unless attributes.is_a?(Hash)
179
+
180
+ attributes = attributes.transform_keys(&:to_sym)
181
+ transformed_hash = {}
182
+ openapi_types.each_pair do |key, type|
183
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
184
+ transformed_hash[key.to_s] = nil
185
+ elsif type =~ /\AArray<(.*)>/i
186
+ # check to ensure the input is an array given that the attribute
187
+ # is documented as an array but the input is not
188
+ 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)
189
+ elsif !attributes[attribute_map[key]].nil?
190
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
191
+ end
192
+ end
193
+ new(transformed_hash)
194
+ end
195
+
196
+ # Deserializes the data based on type
197
+ # @param string type Data type
198
+ # @param string value Value to be deserialized
199
+ # @return [Object] Deserialized data
200
+ def self._deserialize(type, value)
201
+ case type.to_sym
202
+ when :Time
203
+ Time.parse(value)
204
+ when :Date
205
+ Date.parse(value)
206
+ when :String
207
+ value.to_s
208
+ when :Integer
209
+ value.to_i
210
+ when :Float
211
+ value.to_f
212
+ when :Boolean
213
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
214
+ true
215
+ else
216
+ false
217
+ end
218
+ when :Object
219
+ # generic object (usually a Hash), return directly
220
+ value
221
+ when /\AArray<(?<inner_type>.+)>\z/
222
+ inner_type = Regexp.last_match[:inner_type]
223
+ value.map { |v| _deserialize(inner_type, v) }
224
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
225
+ k_type = Regexp.last_match[:k_type]
226
+ v_type = Regexp.last_match[:v_type]
227
+ {}.tap do |hash|
228
+ value.each do |k, v|
229
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
230
+ end
231
+ end
232
+ else # model
233
+ # models (e.g. Pet) or oneOf
234
+ klass = Api.const_get(type)
235
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
236
+ end
237
+ end
238
+
239
+ # Returns the string representation of the object
240
+ # @return [String] String presentation of the object
241
+ def to_s
242
+ to_hash.to_s
243
+ end
244
+
245
+ # to_body is an alias to to_hash (backward compatibility)
246
+ # @return [Hash] Returns the object in the form of hash
247
+ def to_body
248
+ to_hash
249
+ end
250
+
251
+ # Returns the object in the form of hash
252
+ # @return [Hash] Returns the object in the form of hash
253
+ def to_hash
254
+ hash = {}
255
+ self.class.attribute_map.each_pair do |attr, param|
256
+ value = send(attr)
257
+ if value.nil?
258
+ is_nullable = self.class.openapi_nullable.include?(attr)
259
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
260
+ end
261
+
262
+ hash[param] = _to_hash(value)
263
+ end
264
+ hash
265
+ end
266
+
267
+ # Outputs non-array value in the form of hash
268
+ # For object, use to_hash. Otherwise, just return the value
269
+ # @param [Object] value Any valid value
270
+ # @return [Hash] Returns the value in the form of hash
271
+ def _to_hash(value)
272
+ if value.is_a?(Array)
273
+ value.compact.map { |v| _to_hash(v) }
274
+ elsif value.is_a?(Hash)
275
+ {}.tap do |hash|
276
+ value.each { |k, v| hash[k] = _to_hash(v) }
277
+ end
278
+ elsif value.respond_to? :to_hash
279
+ value.to_hash
280
+ else
281
+ value
282
+ end
283
+ end
284
+ end
285
+ end
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -16,13 +16,14 @@ require 'time'
16
16
  module Api
17
17
  # Customer object.
18
18
  class Customer
19
- attr_accessor :id, :email, :created_at, :updated_at
19
+ attr_accessor :id, :email, :ekyc_completed, :created_at, :updated_at
20
20
 
21
21
  # Attribute mapping from ruby-style variable name to JSON key.
22
22
  def self.attribute_map
23
23
  {
24
24
  :id => :id,
25
25
  :email => :email,
26
+ :ekyc_completed => :ekycCompleted,
26
27
  :created_at => :createdAt,
27
28
  :updated_at => :updatedAt
28
29
  }
@@ -38,6 +39,7 @@ module Api
38
39
  {
39
40
  :id => :String,
40
41
  :email => :String,
42
+ :ekyc_completed => :Boolean,
41
43
  :created_at => :Time,
42
44
  :updated_at => :Time
43
45
  }
@@ -64,6 +66,8 @@ module Api
64
66
 
65
67
  self.email = attributes[:email] if attributes.key?(:email)
66
68
 
69
+ self.ekyc_completed = attributes[:ekyc_completed] if attributes.key?(:ekyc_completed)
70
+
67
71
  self.created_at = attributes[:created_at] if attributes.key?(:created_at)
68
72
 
69
73
  return unless attributes.key?(:updated_at)
@@ -93,6 +97,7 @@ module Api
93
97
  self.class == other.class &&
94
98
  id == other.id &&
95
99
  email == other.email &&
100
+ ekyc_completed == other.ekyc_completed &&
96
101
  created_at == other.created_at &&
97
102
  updated_at == other.updated_at
98
103
  end
@@ -106,7 +111,7 @@ module Api
106
111
  # Calculates hash code according to all attributes.
107
112
  # @return [Integer] Hash code
108
113
  def hash
109
- [id, email, created_at, updated_at].hash
114
+ [id, email, ekyc_completed, created_at, updated_at].hash
110
115
  end
111
116
 
112
117
  # Builds the object from hash
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -0,0 +1,45 @@
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 EventType
18
+ UNSPECIFIED = 'EVENT_TYPE_UNSPECIFIED'
19
+ CHARGE_CREATED = 'EVENT_TYPE_CHARGE_CREATED'
20
+ CHARGE_UPDATED = 'EVENT_TYPE_CHARGE_UPDATED'
21
+ CHARGE_SUCCESS = 'EVENT_TYPE_CHARGE_SUCCESS'
22
+ CONTRACT_ACTIVATED = 'EVENT_TYPE_CONTRACT_ACTIVATED'
23
+ TESTING = 'EVENT_TYPE_TESTING'
24
+
25
+ def self.all_vars
26
+ @all_vars ||= [UNSPECIFIED, CHARGE_CREATED, CHARGE_UPDATED, CHARGE_SUCCESS, CONTRACT_ACTIVATED, TESTING].freeze
27
+ end
28
+
29
+ # Builds the enum from string
30
+ # @param [String] The enum value in the form of the string
31
+ # @return [String] The enum value
32
+ def self.build_from_hash(value)
33
+ new.build_from_hash(value)
34
+ end
35
+
36
+ # Builds the enum from string
37
+ # @param [String] The enum value in the form of the string
38
+ # @return [String] The enum value
39
+ def build_from_hash(value)
40
+ return value if EventType.all_vars.include?(value)
41
+
42
+ raise "Invalid ENUM value #{value} for class #EventType"
43
+ end
44
+ end
45
+ end