class Veritrans::Tercerog::Mdk::SaisonCaptureRequestDto

決済サービスタイプ:Saison決済請求要求電文DTOクラス

@author

VeriTrans Inc.

Constants

SERVICE_COMMAND

決済サービスコマンド 半角英数字 必須項目、固定値

SERVICE_TYPE

決済サービスタイプ 半角英数字 必須項目、固定値

Public Class Methods

new() click to toggle source

コンストラクタ

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 31
def initialize
  @service_type = SERVICE_TYPE
  @service_command = SERVICE_COMMAND
end

Public Instance Methods

amount() click to toggle source

決済金額を取得する

@return

決済金額

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 92
def amount
  @amount = nil unless instance_variable_defined?(:@amount)
  @amount
end
amount=(amount) click to toggle source

決済金額を設定する

@param

amount 決済金額

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 101
def amount=(amount)
  @amount = amount
end
card_amount() click to toggle source

カード決済金額を取得する

@return

カード決済金額

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 126
def card_amount
  @card_amount = nil unless instance_variable_defined?(:@card_amount)
  @card_amount
end
card_amount=(card_amount) click to toggle source

カード決済金額を設定する

@param

#card_amount カード決済金額

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 135
def card_amount=(card_amount)
  @card_amount = card_amount
end
card_expire() click to toggle source

カード有効期限を取得する

@return

カード有効期限

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 160
def card_expire
  @card_expire = nil unless instance_variable_defined?(:@card_expire)
  @card_expire
end
card_expire=(card_expire) click to toggle source

カード有効期限を設定する

@param

#card_expire カード有効期限

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 169
def card_expire=(card_expire)
  @card_expire = card_expire
end
card_number() click to toggle source

カード番号を取得する

@return

カード番号

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 143
def card_number
  @card_number = nil unless instance_variable_defined?(:@card_number)
  @card_number
end
card_number=(card_number) click to toggle source

カード番号を設定する

@param

#card_number カード番号

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 152
def card_number=(card_number)
  @card_number = card_number
end
card_order_id() click to toggle source

カード取引IDを取得する

@return

カード取引ID

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 194
def card_order_id
  @card_order_id = nil unless instance_variable_defined?(:@card_order_id)
  @card_order_id
end
card_order_id=(card_order_id) click to toggle source

カード取引IDを設定する

@param

#card_order_id カード取引ID

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 203
def card_order_id=(card_order_id)
  @card_order_id = card_order_id
end
option_params() click to toggle source

拡張パラメータリストを取得する

@return

拡張パラメータリスト

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 229
def option_params
  @option_params = nil unless instance_variable_defined?(:@option_params)
  @option_params
end
option_params=(option_params) click to toggle source

拡張パラメータリストを設定する

@param

#option_params 拡張パラメータリスト

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 238
def option_params=(option_params)
  @option_params = option_params
end
order_id() click to toggle source

取引IDを取得する

@return

取引ID

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 75
def order_id
  @order_id = nil unless instance_variable_defined?(:@order_id)
  @order_id
end
order_id=(order_id) click to toggle source

取引IDを設定する

@param

#order_id 取引ID

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 84
def order_id=(order_id)
  @order_id = order_id
end
security_code() click to toggle source

セキュリティコードを取得する

@return

セキュリティコード

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 177
def security_code
  @security_code = nil unless instance_variable_defined?(:@security_code)
  @security_code
end
security_code=(security_code) click to toggle source

セキュリティコードを設定する

@param

#security_code セキュリティコード

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 186
def security_code=(security_code)
  @security_code = security_code
end
service_command() click to toggle source

決済サービスコマンドを取得する

@return

決済サービスコマンド

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 49
def service_command
  @service_command = nil unless instance_variable_defined?(:@service_command)
  @service_command
end
service_option_type() click to toggle source

決済サービスオプションを取得する

@return

決済サービスオプション

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 58
def service_option_type
  @service_option_type = nil unless instance_variable_defined?(:@service_option_type)
  @service_option_type
end
service_option_type=(service_option_type) click to toggle source

決済サービスオプションを設定する

@param

#service_option_type 決済サービスオプション

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 67
def service_option_type=(service_option_type)
  @service_option_type = service_option_type
end
service_type() click to toggle source

決済サービスタイプを取得する

@return

決済サービスタイプ

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 40
def service_type
  @service_type = nil unless instance_variable_defined?(:@service_type)
  @service_type
end
token() click to toggle source

トークンを取得する

@return

トークン

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 246
def token
  pay_now_id_param.token
end
token=(token) click to toggle source

トークンを設定する

トークンを指定します。

@param

token トークン

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 255
def token=(token)
  pay_now_id_param.token = token
end
wallet_amount() click to toggle source

永久不滅ウォレット決済金額を取得する

@return

永久不滅ウォレット決済金額

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 109
def wallet_amount
  @wallet_amount = nil unless instance_variable_defined?(:@wallet_amount)
  @wallet_amount
end
wallet_amount=(wallet_amount) click to toggle source

永久不滅ウォレット決済金額を設定する

@param

#wallet_amount 永久不滅ウォレット決済金額

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 118
def wallet_amount=(wallet_amount)
  @wallet_amount = wallet_amount
end
with_capture() click to toggle source

カード売上フラグを取得する

@return

カード売上フラグ

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 211
def with_capture
  @with_capture = nil unless instance_variable_defined?(:@with_capture)
  @with_capture
end
with_capture=(with_capture) click to toggle source

カード売上フラグを設定する

@param

#with_capture カード売上フラグ

# File tgMdk/lib/tg_mdk/mdk_dto/saison_capture_request_dto.rb, line 221
def with_capture=(with_capture)
  @with_capture = with_capture
end