jamm 1.0.9 → 1.0.11
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/Rakefile +1 -5
- data/lib/jamm/api/models/v1_charge.rb +11 -1
- data/lib/jamm/api/models/v1_charge_message.rb +12 -7
- data/lib/jamm/api/models/v1_contract_message.rb +222 -0
- data/lib/jamm/api/models/v1_customer.rb +7 -2
- data/lib/jamm/api/models/v1_error.rb +217 -0
- data/lib/jamm/api/models/v1_event_type.rb +2 -1
- data/lib/jamm/api/models/v1_initial_charge.rb +11 -1
- data/lib/jamm/api/models/v1_message_response.rb +12 -7
- data/lib/jamm/api.rb +2 -0
- data/lib/jamm/api_patches.rb +1 -1
- data/lib/jamm/client.rb +2 -0
- data/lib/jamm/customer.rb +9 -1
- data/lib/jamm/version.rb +1 -1
- data/lib/jamm/webhook.rb +16 -5
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b5dabb16cbdc7168f755f1c8afe2feb53ec086d312b051df92561475dec64fe
|
4
|
+
data.tar.gz: f71fa5d88f1b17f796744ef35d5fd8f5975874d47e8934c7834e1d78cc4fe79e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84f27de5200f6d8392195b37a758e1fa107f3e565ee80190d327e5438f8ae73ae3475b7a7a504ba2907675a7a9e801f4376a55aefb7b6f7a1a18048170cffe20
|
7
|
+
data.tar.gz: bb3c6a9b22e0c8d62948c1d2d62182a32118176ec8e065e189d7819c12dd476a9a2df3787f1f7cf436d930abb50b1f7315131aaeeac7c6a9edbae45e5e924e45
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
@@ -6,11 +6,7 @@ require 'bundler/gem_tasks'
|
|
6
6
|
|
7
7
|
RuboCop::RakeTask.new
|
8
8
|
|
9
|
-
task default: %i[
|
10
|
-
|
11
|
-
Rake::TestTask.new do |t|
|
12
|
-
t.pattern = './test/**/*_test.rb'
|
13
|
-
end
|
9
|
+
task default: %i[rubocop]
|
14
10
|
|
15
11
|
desc 'Run end-to-end tests'
|
16
12
|
Rake::TestTask.new(:e2e) do |t|
|
@@ -25,6 +25,9 @@ module Api
|
|
25
25
|
# Description is an arbitrary string for merchant to track the charge. This information is displayed on Merchant Dashboard. 決済の説明。ショップが決済を追跡するための任意の文字列です。 @gotags: validate:\"required\"
|
26
26
|
attr_accessor :description
|
27
27
|
|
28
|
+
# Arbitrary key-value additional information about the charge. You can see this information in our merchant dashboard. Chargeに関する任意のキーと値の追加情報。 加盟店ダッシュボードで確認できます。
|
29
|
+
attr_accessor :metadata
|
30
|
+
|
28
31
|
# Merchant can optionally set the expiry date for the payment. Defaults to 90 minutes if not specified. 決済の有効期限。未指定の場合は90分後に自動失効します。
|
29
32
|
attr_accessor :expires_at
|
30
33
|
|
@@ -34,6 +37,7 @@ module Api
|
|
34
37
|
:id => :id,
|
35
38
|
:price => :price,
|
36
39
|
:description => :description,
|
40
|
+
:metadata => :metadata,
|
37
41
|
:expires_at => :expiresAt
|
38
42
|
}
|
39
43
|
end
|
@@ -49,6 +53,7 @@ module Api
|
|
49
53
|
:id => :String,
|
50
54
|
:price => :Integer,
|
51
55
|
:description => :String,
|
56
|
+
:metadata => :'Hash<String, String>',
|
52
57
|
:expires_at => :Time
|
53
58
|
}
|
54
59
|
end
|
@@ -76,6 +81,10 @@ module Api
|
|
76
81
|
|
77
82
|
self.description = attributes[:description] if attributes.key?(:description)
|
78
83
|
|
84
|
+
if attributes.key?(:metadata) && (value = attributes[:metadata]).is_a?(Hash)
|
85
|
+
self.metadata = value
|
86
|
+
end
|
87
|
+
|
79
88
|
return unless attributes.key?(:expires_at)
|
80
89
|
|
81
90
|
self.expires_at = attributes[:expires_at]
|
@@ -104,6 +113,7 @@ module Api
|
|
104
113
|
id == other.id &&
|
105
114
|
price == other.price &&
|
106
115
|
description == other.description &&
|
116
|
+
metadata == other.metadata &&
|
107
117
|
expires_at == other.expires_at
|
108
118
|
end
|
109
119
|
|
@@ -116,7 +126,7 @@ module Api
|
|
116
126
|
# Calculates hash code according to all attributes.
|
117
127
|
# @return [Integer] Hash code
|
118
128
|
def hash
|
119
|
-
[id, price, description, expires_at].hash
|
129
|
+
[id, price, description, metadata, expires_at].hash
|
120
130
|
end
|
121
131
|
|
122
132
|
# Builds the object from hash
|
@@ -15,7 +15,7 @@ require 'time'
|
|
15
15
|
|
16
16
|
module Api
|
17
17
|
class ChargeMessage
|
18
|
-
attr_accessor :id, :customer, :status, :description, :merchant_name, :initial_amount, :discount, :final_amount, :amount_refunded, :currency, :processed_at, :created_at, :updated_at
|
18
|
+
attr_accessor :id, :customer, :status, :description, :merchant_name, :initial_amount, :discount, :final_amount, :amount_refunded, :currency, :processed_at, :created_at, :updated_at, :error
|
19
19
|
|
20
20
|
class EnumAttributeValidator
|
21
21
|
attr_reader :datatype, :allowable_values
|
@@ -53,7 +53,8 @@ module Api
|
|
53
53
|
:currency => :currency,
|
54
54
|
:processed_at => :processedAt,
|
55
55
|
:created_at => :createdAt,
|
56
|
-
:updated_at => :updatedAt
|
56
|
+
:updated_at => :updatedAt,
|
57
|
+
:error => :error
|
57
58
|
}
|
58
59
|
end
|
59
60
|
|
@@ -77,7 +78,8 @@ module Api
|
|
77
78
|
:currency => :String,
|
78
79
|
:processed_at => :String,
|
79
80
|
:created_at => :String,
|
80
|
-
:updated_at => :String
|
81
|
+
:updated_at => :String,
|
82
|
+
:error => :Error
|
81
83
|
}
|
82
84
|
end
|
83
85
|
|
@@ -126,9 +128,11 @@ module Api
|
|
126
128
|
|
127
129
|
self.created_at = attributes[:created_at] if attributes.key?(:created_at)
|
128
130
|
|
129
|
-
|
131
|
+
self.updated_at = attributes[:updated_at] if attributes.key?(:updated_at)
|
130
132
|
|
131
|
-
|
133
|
+
return unless attributes.key?(:error)
|
134
|
+
|
135
|
+
self.error = attributes[:error]
|
132
136
|
end
|
133
137
|
|
134
138
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -163,7 +167,8 @@ module Api
|
|
163
167
|
currency == other.currency &&
|
164
168
|
processed_at == other.processed_at &&
|
165
169
|
created_at == other.created_at &&
|
166
|
-
updated_at == other.updated_at
|
170
|
+
updated_at == other.updated_at &&
|
171
|
+
error == other.error
|
167
172
|
end
|
168
173
|
|
169
174
|
# @see the `==` method
|
@@ -175,7 +180,7 @@ module Api
|
|
175
180
|
# Calculates hash code according to all attributes.
|
176
181
|
# @return [Integer] Hash code
|
177
182
|
def hash
|
178
|
-
[id, customer, status, description, merchant_name, initial_amount, discount, final_amount, amount_refunded, currency, processed_at, created_at, updated_at].hash
|
183
|
+
[id, customer, status, description, merchant_name, initial_amount, discount, final_amount, amount_refunded, currency, processed_at, created_at, updated_at, error].hash
|
179
184
|
end
|
180
185
|
|
181
186
|
# Builds the object from hash
|
@@ -0,0 +1,222 @@
|
|
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 ContractMessage
|
18
|
+
attr_accessor :customer, :created_at, :activated_at, :merchant_name
|
19
|
+
|
20
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
21
|
+
def self.attribute_map
|
22
|
+
{
|
23
|
+
:customer => :customer,
|
24
|
+
:created_at => :createdAt,
|
25
|
+
:activated_at => :activatedAt,
|
26
|
+
:merchant_name => :merchantName
|
27
|
+
}
|
28
|
+
end
|
29
|
+
|
30
|
+
# Returns all the JSON keys this model knows about
|
31
|
+
def self.acceptable_attributes
|
32
|
+
attribute_map.values
|
33
|
+
end
|
34
|
+
|
35
|
+
# Attribute type mapping.
|
36
|
+
def self.openapi_types
|
37
|
+
{
|
38
|
+
:customer => :String,
|
39
|
+
:created_at => :String,
|
40
|
+
:activated_at => :String,
|
41
|
+
:merchant_name => :String
|
42
|
+
}
|
43
|
+
end
|
44
|
+
|
45
|
+
# List of attributes with nullable: true
|
46
|
+
def self.openapi_nullable
|
47
|
+
Set.new([])
|
48
|
+
end
|
49
|
+
|
50
|
+
# Initializes the object
|
51
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
52
|
+
def initialize(attributes = {})
|
53
|
+
raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::ContractMessage` initialize method' unless attributes.is_a?(Hash)
|
54
|
+
|
55
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
56
|
+
attributes = attributes.each_with_object({}) do |(k, v), h|
|
57
|
+
raise ArgumentError, "`#{k}` is not a valid attribute in `Api::ContractMessage`. 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)
|
58
|
+
|
59
|
+
h[k.to_sym] = v
|
60
|
+
end
|
61
|
+
|
62
|
+
self.customer = attributes[:customer] if attributes.key?(:customer)
|
63
|
+
|
64
|
+
self.created_at = attributes[:created_at] if attributes.key?(:created_at)
|
65
|
+
|
66
|
+
self.activated_at = attributes[:activated_at] if attributes.key?(:activated_at)
|
67
|
+
|
68
|
+
return unless attributes.key?(:merchant_name)
|
69
|
+
|
70
|
+
self.merchant_name = attributes[:merchant_name]
|
71
|
+
end
|
72
|
+
|
73
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
74
|
+
# @return Array for valid properties with the reasons
|
75
|
+
def list_invalid_properties
|
76
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
77
|
+
[]
|
78
|
+
end
|
79
|
+
|
80
|
+
# Check to see if the all the properties in the model are valid
|
81
|
+
# @return true if the model is valid
|
82
|
+
def valid?
|
83
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
84
|
+
true
|
85
|
+
end
|
86
|
+
|
87
|
+
# Checks equality by comparing each attribute.
|
88
|
+
# @param [Object] Object to be compared
|
89
|
+
def ==(other)
|
90
|
+
return true if equal?(other)
|
91
|
+
|
92
|
+
self.class == other.class &&
|
93
|
+
customer == other.customer &&
|
94
|
+
created_at == other.created_at &&
|
95
|
+
activated_at == other.activated_at &&
|
96
|
+
merchant_name == other.merchant_name
|
97
|
+
end
|
98
|
+
|
99
|
+
# @see the `==` method
|
100
|
+
# @param [Object] Object to be compared
|
101
|
+
def eql?(other)
|
102
|
+
self == other
|
103
|
+
end
|
104
|
+
|
105
|
+
# Calculates hash code according to all attributes.
|
106
|
+
# @return [Integer] Hash code
|
107
|
+
def hash
|
108
|
+
[customer, created_at, activated_at, merchant_name].hash
|
109
|
+
end
|
110
|
+
|
111
|
+
# Builds the object from hash
|
112
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
113
|
+
# @return [Object] Returns the model itself
|
114
|
+
def self.build_from_hash(attributes)
|
115
|
+
return nil unless attributes.is_a?(Hash)
|
116
|
+
|
117
|
+
attributes = attributes.transform_keys(&:to_sym)
|
118
|
+
transformed_hash = {}
|
119
|
+
openapi_types.each_pair do |key, type|
|
120
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
121
|
+
transformed_hash[key.to_s] = nil
|
122
|
+
elsif type =~ /\AArray<(.*)>/i
|
123
|
+
# check to ensure the input is an array given that the attribute
|
124
|
+
# is documented as an array but the input is not
|
125
|
+
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)
|
126
|
+
elsif !attributes[attribute_map[key]].nil?
|
127
|
+
transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
|
128
|
+
end
|
129
|
+
end
|
130
|
+
new(transformed_hash)
|
131
|
+
end
|
132
|
+
|
133
|
+
# Deserializes the data based on type
|
134
|
+
# @param string type Data type
|
135
|
+
# @param string value Value to be deserialized
|
136
|
+
# @return [Object] Deserialized data
|
137
|
+
def self._deserialize(type, value)
|
138
|
+
case type.to_sym
|
139
|
+
when :Time
|
140
|
+
Time.parse(value)
|
141
|
+
when :Date
|
142
|
+
Date.parse(value)
|
143
|
+
when :String
|
144
|
+
value.to_s
|
145
|
+
when :Integer
|
146
|
+
value.to_i
|
147
|
+
when :Float
|
148
|
+
value.to_f
|
149
|
+
when :Boolean
|
150
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
151
|
+
true
|
152
|
+
else
|
153
|
+
false
|
154
|
+
end
|
155
|
+
when :Object
|
156
|
+
# generic object (usually a Hash), return directly
|
157
|
+
value
|
158
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
159
|
+
inner_type = Regexp.last_match[:inner_type]
|
160
|
+
value.map { |v| _deserialize(inner_type, v) }
|
161
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
162
|
+
k_type = Regexp.last_match[:k_type]
|
163
|
+
v_type = Regexp.last_match[:v_type]
|
164
|
+
{}.tap do |hash|
|
165
|
+
value.each do |k, v|
|
166
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
else # model
|
170
|
+
# models (e.g. Pet) or oneOf
|
171
|
+
klass = Api.const_get(type)
|
172
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
# Returns the string representation of the object
|
177
|
+
# @return [String] String presentation of the object
|
178
|
+
def to_s
|
179
|
+
to_hash.to_s
|
180
|
+
end
|
181
|
+
|
182
|
+
# to_body is an alias to to_hash (backward compatibility)
|
183
|
+
# @return [Hash] Returns the object in the form of hash
|
184
|
+
def to_body
|
185
|
+
to_hash
|
186
|
+
end
|
187
|
+
|
188
|
+
# Returns the object in the form of hash
|
189
|
+
# @return [Hash] Returns the object in the form of hash
|
190
|
+
def to_hash
|
191
|
+
hash = {}
|
192
|
+
self.class.attribute_map.each_pair do |attr, param|
|
193
|
+
value = send(attr)
|
194
|
+
if value.nil?
|
195
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
196
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
197
|
+
end
|
198
|
+
|
199
|
+
hash[param] = _to_hash(value)
|
200
|
+
end
|
201
|
+
hash
|
202
|
+
end
|
203
|
+
|
204
|
+
# Outputs non-array value in the form of hash
|
205
|
+
# For object, use to_hash. Otherwise, just return the value
|
206
|
+
# @param [Object] value Any valid value
|
207
|
+
# @return [Hash] Returns the value in the form of hash
|
208
|
+
def _to_hash(value)
|
209
|
+
if value.is_a?(Array)
|
210
|
+
value.compact.map { |v| _to_hash(v) }
|
211
|
+
elsif value.is_a?(Hash)
|
212
|
+
{}.tap do |hash|
|
213
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
214
|
+
end
|
215
|
+
elsif value.respond_to? :to_hash
|
216
|
+
value.to_hash
|
217
|
+
else
|
218
|
+
value
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|
@@ -16,7 +16,7 @@ require 'time'
|
|
16
16
|
module Api
|
17
17
|
# Customer object.
|
18
18
|
class Customer
|
19
|
-
attr_accessor :id, :email, :ekyc_completed, :created_at, :updated_at
|
19
|
+
attr_accessor :id, :email, :ekyc_completed, :activated, :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,7 @@ module Api
|
|
24
24
|
:id => :id,
|
25
25
|
:email => :email,
|
26
26
|
:ekyc_completed => :ekycCompleted,
|
27
|
+
:activated => :activated,
|
27
28
|
:created_at => :createdAt,
|
28
29
|
:updated_at => :updatedAt
|
29
30
|
}
|
@@ -40,6 +41,7 @@ module Api
|
|
40
41
|
:id => :String,
|
41
42
|
:email => :String,
|
42
43
|
:ekyc_completed => :Boolean,
|
44
|
+
:activated => :Boolean,
|
43
45
|
:created_at => :Time,
|
44
46
|
:updated_at => :Time
|
45
47
|
}
|
@@ -68,6 +70,8 @@ module Api
|
|
68
70
|
|
69
71
|
self.ekyc_completed = attributes[:ekyc_completed] if attributes.key?(:ekyc_completed)
|
70
72
|
|
73
|
+
self.activated = attributes[:activated] if attributes.key?(:activated)
|
74
|
+
|
71
75
|
self.created_at = attributes[:created_at] if attributes.key?(:created_at)
|
72
76
|
|
73
77
|
return unless attributes.key?(:updated_at)
|
@@ -98,6 +102,7 @@ module Api
|
|
98
102
|
id == other.id &&
|
99
103
|
email == other.email &&
|
100
104
|
ekyc_completed == other.ekyc_completed &&
|
105
|
+
activated == other.activated &&
|
101
106
|
created_at == other.created_at &&
|
102
107
|
updated_at == other.updated_at
|
103
108
|
end
|
@@ -111,7 +116,7 @@ module Api
|
|
111
116
|
# Calculates hash code according to all attributes.
|
112
117
|
# @return [Integer] Hash code
|
113
118
|
def hash
|
114
|
-
[id, email, ekyc_completed, created_at, updated_at].hash
|
119
|
+
[id, email, ekyc_completed, activated, created_at, updated_at].hash
|
115
120
|
end
|
116
121
|
|
117
122
|
# Builds the object from hash
|
@@ -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
|
+
# Generic error type.
|
18
|
+
class Error
|
19
|
+
# Jamm defined error code.
|
20
|
+
attr_accessor :code
|
21
|
+
|
22
|
+
# Human readable error message.
|
23
|
+
attr_accessor :message
|
24
|
+
|
25
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
26
|
+
def self.attribute_map
|
27
|
+
{
|
28
|
+
:code => :code,
|
29
|
+
:message => :message
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
# Returns all the JSON keys this model knows about
|
34
|
+
def self.acceptable_attributes
|
35
|
+
attribute_map.values
|
36
|
+
end
|
37
|
+
|
38
|
+
# Attribute type mapping.
|
39
|
+
def self.openapi_types
|
40
|
+
{
|
41
|
+
:code => :String,
|
42
|
+
:message => :String
|
43
|
+
}
|
44
|
+
end
|
45
|
+
|
46
|
+
# List of attributes with nullable: true
|
47
|
+
def self.openapi_nullable
|
48
|
+
Set.new([])
|
49
|
+
end
|
50
|
+
|
51
|
+
# Initializes the object
|
52
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
53
|
+
def initialize(attributes = {})
|
54
|
+
raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::Error` initialize method' unless attributes.is_a?(Hash)
|
55
|
+
|
56
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
57
|
+
attributes = attributes.each_with_object({}) do |(k, v), h|
|
58
|
+
raise ArgumentError, "`#{k}` is not a valid attribute in `Api::Error`. 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)
|
59
|
+
|
60
|
+
h[k.to_sym] = v
|
61
|
+
end
|
62
|
+
|
63
|
+
self.code = attributes[:code] if attributes.key?(:code)
|
64
|
+
|
65
|
+
return unless attributes.key?(:message)
|
66
|
+
|
67
|
+
self.message = attributes[:message]
|
68
|
+
end
|
69
|
+
|
70
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
71
|
+
# @return Array for valid properties with the reasons
|
72
|
+
def list_invalid_properties
|
73
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
74
|
+
[]
|
75
|
+
end
|
76
|
+
|
77
|
+
# Check to see if the all the properties in the model are valid
|
78
|
+
# @return true if the model is valid
|
79
|
+
def valid?
|
80
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
81
|
+
true
|
82
|
+
end
|
83
|
+
|
84
|
+
# Checks equality by comparing each attribute.
|
85
|
+
# @param [Object] Object to be compared
|
86
|
+
def ==(other)
|
87
|
+
return true if equal?(other)
|
88
|
+
|
89
|
+
self.class == other.class &&
|
90
|
+
code == other.code &&
|
91
|
+
message == other.message
|
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
|
+
[code, message].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
|
@@ -19,11 +19,12 @@ module Api
|
|
19
19
|
CHARGE_CREATED = 'EVENT_TYPE_CHARGE_CREATED'
|
20
20
|
CHARGE_UPDATED = 'EVENT_TYPE_CHARGE_UPDATED'
|
21
21
|
CHARGE_SUCCESS = 'EVENT_TYPE_CHARGE_SUCCESS'
|
22
|
+
CHARGE_FAIL = 'EVENT_TYPE_CHARGE_FAIL'
|
22
23
|
CONTRACT_ACTIVATED = 'EVENT_TYPE_CONTRACT_ACTIVATED'
|
23
24
|
TESTING = 'EVENT_TYPE_TESTING'
|
24
25
|
|
25
26
|
def self.all_vars
|
26
|
-
@all_vars ||= [UNSPECIFIED, CHARGE_CREATED, CHARGE_UPDATED, CHARGE_SUCCESS, CONTRACT_ACTIVATED, TESTING].freeze
|
27
|
+
@all_vars ||= [UNSPECIFIED, CHARGE_CREATED, CHARGE_UPDATED, CHARGE_SUCCESS, CHARGE_FAIL, CONTRACT_ACTIVATED, TESTING].freeze
|
27
28
|
end
|
28
29
|
|
29
30
|
# Builds the enum from string
|
@@ -22,6 +22,9 @@ module Api
|
|
22
22
|
# Description is an arbitrary string for merchant to track the charge. This information is displayed on Merchant Dashboard. 決済の説明。ショップが決済を追跡するための任意の文字列です。 @gotags: validate:\"required\"
|
23
23
|
attr_accessor :description
|
24
24
|
|
25
|
+
# Arbitrary key-value additional information about the charge. You can see this information in our merchant dashboard. Chargeに関する任意のキーと値の追加情報。 加盟店ダッシュボードで確認できます。
|
26
|
+
attr_accessor :metadata
|
27
|
+
|
25
28
|
# Merchant can optionally set the expiry date for the payment. Defaults to 90 minutes if not specified. 決済の有効期限。未指定の場合は90分後に自動失効します。
|
26
29
|
attr_accessor :expires_at
|
27
30
|
|
@@ -30,6 +33,7 @@ module Api
|
|
30
33
|
{
|
31
34
|
:price => :price,
|
32
35
|
:description => :description,
|
36
|
+
:metadata => :metadata,
|
33
37
|
:expires_at => :expiresAt
|
34
38
|
}
|
35
39
|
end
|
@@ -44,6 +48,7 @@ module Api
|
|
44
48
|
{
|
45
49
|
:price => :Integer,
|
46
50
|
:description => :String,
|
51
|
+
:metadata => :'Hash<String, String>',
|
47
52
|
:expires_at => :Time
|
48
53
|
}
|
49
54
|
end
|
@@ -69,6 +74,10 @@ module Api
|
|
69
74
|
|
70
75
|
self.description = attributes[:description] if attributes.key?(:description)
|
71
76
|
|
77
|
+
if attributes.key?(:metadata) && (value = attributes[:metadata]).is_a?(Hash)
|
78
|
+
self.metadata = value
|
79
|
+
end
|
80
|
+
|
72
81
|
return unless attributes.key?(:expires_at)
|
73
82
|
|
74
83
|
self.expires_at = attributes[:expires_at]
|
@@ -96,6 +105,7 @@ module Api
|
|
96
105
|
self.class == other.class &&
|
97
106
|
price == other.price &&
|
98
107
|
description == other.description &&
|
108
|
+
metadata == other.metadata &&
|
99
109
|
expires_at == other.expires_at
|
100
110
|
end
|
101
111
|
|
@@ -108,7 +118,7 @@ module Api
|
|
108
118
|
# Calculates hash code according to all attributes.
|
109
119
|
# @return [Integer] Hash code
|
110
120
|
def hash
|
111
|
-
[price, description, expires_at].hash
|
121
|
+
[price, description, metadata, expires_at].hash
|
112
122
|
end
|
113
123
|
|
114
124
|
# Builds the object from hash
|
@@ -15,13 +15,14 @@ require 'time'
|
|
15
15
|
|
16
16
|
module Api
|
17
17
|
class MessageResponse
|
18
|
-
attr_accessor :merchant_webhook_message, :charge_message
|
18
|
+
attr_accessor :merchant_webhook_message, :charge_message, :contract_message
|
19
19
|
|
20
20
|
# Attribute mapping from ruby-style variable name to JSON key.
|
21
21
|
def self.attribute_map
|
22
22
|
{
|
23
23
|
:merchant_webhook_message => :merchantWebhookMessage,
|
24
|
-
:charge_message => :chargeMessage
|
24
|
+
:charge_message => :chargeMessage,
|
25
|
+
:contract_message => :contractMessage
|
25
26
|
}
|
26
27
|
end
|
27
28
|
|
@@ -34,7 +35,8 @@ module Api
|
|
34
35
|
def self.openapi_types
|
35
36
|
{
|
36
37
|
:merchant_webhook_message => :MerchantWebhookMessage,
|
37
|
-
:charge_message => :ChargeMessage
|
38
|
+
:charge_message => :ChargeMessage,
|
39
|
+
:contract_message => :ContractMessage
|
38
40
|
}
|
39
41
|
end
|
40
42
|
|
@@ -57,9 +59,11 @@ module Api
|
|
57
59
|
|
58
60
|
self.merchant_webhook_message = attributes[:merchant_webhook_message] if attributes.key?(:merchant_webhook_message)
|
59
61
|
|
60
|
-
|
62
|
+
self.charge_message = attributes[:charge_message] if attributes.key?(:charge_message)
|
61
63
|
|
62
|
-
|
64
|
+
return unless attributes.key?(:contract_message)
|
65
|
+
|
66
|
+
self.contract_message = attributes[:contract_message]
|
63
67
|
end
|
64
68
|
|
65
69
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -83,7 +87,8 @@ module Api
|
|
83
87
|
|
84
88
|
self.class == other.class &&
|
85
89
|
merchant_webhook_message == other.merchant_webhook_message &&
|
86
|
-
charge_message == other.charge_message
|
90
|
+
charge_message == other.charge_message &&
|
91
|
+
contract_message == other.contract_message
|
87
92
|
end
|
88
93
|
|
89
94
|
# @see the `==` method
|
@@ -95,7 +100,7 @@ module Api
|
|
95
100
|
# Calculates hash code according to all attributes.
|
96
101
|
# @return [Integer] Hash code
|
97
102
|
def hash
|
98
|
-
[merchant_webhook_message, charge_message].hash
|
103
|
+
[merchant_webhook_message, charge_message, contract_message].hash
|
99
104
|
end
|
100
105
|
|
101
106
|
# Builds the object from hash
|
data/lib/jamm/api.rb
CHANGED
@@ -28,6 +28,7 @@ require 'jamm/api/models/v1_charge_message'
|
|
28
28
|
require 'jamm/api/models/v1_charge_message_status'
|
29
29
|
require 'jamm/api/models/v1_charge_result'
|
30
30
|
require 'jamm/api/models/v1_contract'
|
31
|
+
require 'jamm/api/models/v1_contract_message'
|
31
32
|
require 'jamm/api/models/v1_contract_status'
|
32
33
|
require 'jamm/api/models/v1_create_contract_with_charge_request'
|
33
34
|
require 'jamm/api/models/v1_create_contract_with_charge_response'
|
@@ -37,6 +38,7 @@ require 'jamm/api/models/v1_create_customer_request'
|
|
37
38
|
require 'jamm/api/models/v1_create_customer_response'
|
38
39
|
require 'jamm/api/models/v1_customer'
|
39
40
|
require 'jamm/api/models/v1_delete_customer_response'
|
41
|
+
require 'jamm/api/models/v1_error'
|
40
42
|
require 'jamm/api/models/v1_event_type'
|
41
43
|
require 'jamm/api/models/v1_get_charge_response'
|
42
44
|
require 'jamm/api/models/v1_get_charges_response'
|
data/lib/jamm/api_patches.rb
CHANGED
data/lib/jamm/client.rb
CHANGED
data/lib/jamm/customer.rb
CHANGED
@@ -17,7 +17,15 @@ module Jamm
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def self.get(id_or_email)
|
20
|
-
Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get(id_or_email)
|
20
|
+
r = Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get(id_or_email)
|
21
|
+
|
22
|
+
if r.customer.activated.nil?
|
23
|
+
# Activated flag requires explicit binding on false, since RPC/OpenAPI does
|
24
|
+
# not return false value.
|
25
|
+
r.customer.activated = false
|
26
|
+
end
|
27
|
+
|
28
|
+
r.customer
|
21
29
|
rescue Jamm::OpenAPI::ApiError => e
|
22
30
|
[404].include?(e.code) ? nil : raise
|
23
31
|
end
|
data/lib/jamm/version.rb
CHANGED
data/lib/jamm/webhook.rb
CHANGED
@@ -13,13 +13,12 @@ module Jamm
|
|
13
13
|
out = {
|
14
14
|
id: json[:id],
|
15
15
|
signature: json[:signature],
|
16
|
-
|
17
|
-
event_type: json[:eventType],
|
16
|
+
event_type: json[:event_type],
|
18
17
|
content: nil,
|
19
|
-
created_at: json[:
|
18
|
+
created_at: json[:created_at]
|
20
19
|
}
|
21
20
|
|
22
|
-
case json[:
|
21
|
+
case json[:event_type]
|
23
22
|
when Jamm::OpenAPI::EventType::CHARGE_CREATED
|
24
23
|
out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
|
25
24
|
return out
|
@@ -27,9 +26,21 @@ module Jamm
|
|
27
26
|
when Jamm::OpenAPI::EventType::CHARGE_UPDATED
|
28
27
|
out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
|
29
28
|
return out
|
29
|
+
|
30
|
+
when Jamm::OpenAPI::EventType::CHARGE_SUCCESS
|
31
|
+
out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
|
32
|
+
return out
|
33
|
+
|
34
|
+
when Jamm::OpenAPI::EventType::CHARGE_FAIL
|
35
|
+
out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
|
36
|
+
return out
|
37
|
+
|
38
|
+
when Jamm::OpenAPI::EventType::CONTRACT_ACTIVATED
|
39
|
+
out[:content] = Jamm::OpenAPI::ContractMessage.new(json[:content])
|
40
|
+
return out
|
30
41
|
end
|
31
42
|
|
32
|
-
raise
|
43
|
+
raise 'Unknown event type'
|
33
44
|
end
|
34
45
|
end
|
35
46
|
end
|
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.0.
|
4
|
+
version: 1.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamm
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -78,6 +78,7 @@ files:
|
|
78
78
|
- lib/jamm/api/models/v1_charge_message_status.rb
|
79
79
|
- lib/jamm/api/models/v1_charge_result.rb
|
80
80
|
- lib/jamm/api/models/v1_contract.rb
|
81
|
+
- lib/jamm/api/models/v1_contract_message.rb
|
81
82
|
- lib/jamm/api/models/v1_contract_status.rb
|
82
83
|
- lib/jamm/api/models/v1_create_contract_with_charge_request.rb
|
83
84
|
- lib/jamm/api/models/v1_create_contract_with_charge_response.rb
|
@@ -87,6 +88,7 @@ files:
|
|
87
88
|
- lib/jamm/api/models/v1_create_customer_response.rb
|
88
89
|
- lib/jamm/api/models/v1_customer.rb
|
89
90
|
- lib/jamm/api/models/v1_delete_customer_response.rb
|
91
|
+
- lib/jamm/api/models/v1_error.rb
|
90
92
|
- lib/jamm/api/models/v1_event_type.rb
|
91
93
|
- lib/jamm/api/models/v1_get_charge_response.rb
|
92
94
|
- lib/jamm/api/models/v1_get_charges_response.rb
|