class Veritrans::Tercerog::Mdk::AmazonpayUpdateConsentRequestDto
決済サービスタイプ:Amazonpay、コマンド名:承諾情報更新の要求Dtoクラス¶ ↑
- @author
-
VeriTrans Inc.
Constants
- SERVICE_COMMAND
決済サービスコマンド 半角英数字 必須項目、固定値
- SERVICE_TYPE
決済サービスタイプ 半角英数字 必須項目、固定値
Public Class Methods
Public Instance Methods
amount()
click to toggle source
amount=(amount)
click to toggle source
frequency_unit()
click to toggle source
frequency_unit=(frequency_unit)
click to toggle source
頻度(単位)を設定する¶ ↑
変更後の随時決済の頻度の単位(例:2週間毎であれば、単位はWeek、値は2) “Year”:年 “Month”:月 “Week”:週 “Day”:日
- @param
-
#frequency_unit 頻度(単位)
# File tgMdk/lib/tg_mdk/mdk_dto/amazonpay_update_consent_request_dto.rb, line 111 def frequency_unit=(frequency_unit) @frequency_unit = frequency_unit end
frequency_value()
click to toggle source
frequency_value=(frequency_value)
click to toggle source
頻度(値)を設定する¶ ↑
変更後の随時決済の頻度の値(例:2週間毎であれば、単位はWeek、値は2)
-
頻度(単位)毎に設定できる範囲が異なります。
“Year”:1のみ “Month”:1~12 “Week”:1~52 “Day”:1~365
- @param
-
#frequency_value 頻度(値)
# File tgMdk/lib/tg_mdk/mdk_dto/amazonpay_update_consent_request_dto.rb, line 134 def frequency_value=(frequency_value) @frequency_value = frequency_value end
note_to_buyer()
click to toggle source
note_to_buyer=(note_to_buyer)
click to toggle source
注文説明を設定する¶ ↑
変更後の購入者のメールに表示される注文の説明
-
最大:255文字
- @param
-
#note_to_buyer 注文説明
# File tgMdk/lib/tg_mdk/mdk_dto/amazonpay_update_consent_request_dto.rb, line 172 def note_to_buyer=(note_to_buyer) @note_to_buyer = note_to_buyer end
order_id()
click to toggle source
order_id=(order_id)
click to toggle source
platform_id()
click to toggle source
platform_id=(platform_id)
click to toggle source
プラットフォームIDを設定する¶ ↑
Amazonから指定のあった場合のみ設定する予定の項目
-
最大:21byte
- @param
-
#platform_id プラットフォームID
# File tgMdk/lib/tg_mdk/mdk_dto/amazonpay_update_consent_request_dto.rb, line 153 def platform_id=(platform_id) @platform_id = platform_id end
service_command()
click to toggle source