khipu-api-client 2.0.1 → 2.0.2
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/lib/khipu-api-client/models/payment_response.rb +11 -3
- data/lib/khipu-api-client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a25c03af8f03c0b71855165dc5db00c253d4982
|
4
|
+
data.tar.gz: eac6a1af342b5a329ff7c97aef9e5e59f3eb03ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c28494755397cc950ae6012dd82bfacca4330b5e5008162ad55770750cf0fd7686cc1c6250bc92a9228341042f6fb20b533b35b486d05c8df62809cf64e810cb
|
7
|
+
data.tar.gz: dbe7b583323b424d5ac1ae602461837bfafa5ed6a964b8c88967fd20b8ea15049b7aaaed9f5ebfe4cc2f3b70c2e8afc876872a0d334ee48109c4dcbfafcdb098
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module Khipu
|
2
2
|
#
|
3
3
|
class PaymentResponse < BaseObject
|
4
|
-
attr_accessor :payment_id, :payment_url, :simplified_transfer_url, :transfer_url, :app_url, :ready_for_terminal, :subject, :amount, :currency, :status, :status_detail, :body, :picture_url, :receipt_url, :return_url, :cancel_url, :notify_url, :notify_api_version, :expires_date, :attachment_urls, :bank, :bank_id, :payer_name, :payer_email, :personal_identifier, :bank_account_number, :out_of_date_conciliation, :transaction_id, :custom, :responsible_user_email, :send_reminders
|
4
|
+
attr_accessor :payment_id, :payment_url, :simplified_transfer_url, :transfer_url, :app_url, :ready_for_terminal, :subject, :amount, :currency, :status, :status_detail, :body, :picture_url, :receipt_url, :return_url, :cancel_url, :notify_url, :notify_api_version, :expires_date, :attachment_urls, :bank, :bank_id, :payer_name, :payer_email, :personal_identifier, :bank_account_number, :out_of_date_conciliation, :transaction_id, :custom, :responsible_user_email, :send_reminders, :send_email
|
5
5
|
# attribute mapping from ruby-style variable name to JSON key
|
6
6
|
def self.attribute_map
|
7
7
|
{
|
@@ -97,7 +97,10 @@ module Khipu
|
|
97
97
|
:'responsible_user_email' => :'responsible_user_email',
|
98
98
|
|
99
99
|
#
|
100
|
-
:'send_reminders' => :'send_reminders'
|
100
|
+
:'send_reminders' => :'send_reminders',
|
101
|
+
|
102
|
+
#
|
103
|
+
:'send_email' => :'send_email'
|
101
104
|
|
102
105
|
}
|
103
106
|
end
|
@@ -135,7 +138,8 @@ module Khipu
|
|
135
138
|
:'transaction_id' => :'String',
|
136
139
|
:'custom' => :'String',
|
137
140
|
:'responsible_user_email' => :'String',
|
138
|
-
:'send_reminders' => :'String'
|
141
|
+
:'send_reminders' => :'String',
|
142
|
+
:'send_email' => :'BOOLEAN'
|
139
143
|
|
140
144
|
}
|
141
145
|
end
|
@@ -273,6 +277,10 @@ module Khipu
|
|
273
277
|
self.send_reminders = attributes[:'send_reminders']
|
274
278
|
end
|
275
279
|
|
280
|
+
if attributes[:'send_email']
|
281
|
+
self.send_email = attributes[:'send_email']
|
282
|
+
end
|
283
|
+
|
276
284
|
end
|
277
285
|
|
278
286
|
end
|