class Veritrans::Tercerog::Mdk::SaisonAuthorizeRequestDto

Constants

SERVICE_COMMAND

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

SERVICE_TYPE

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

Public Class Methods

new() click to toggle source

コンストラクタ

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

Public Instance Methods

merchant_redirection_uri() click to toggle source

マーチャントリダイレクションURIを取得する

@return

マーチャントリダイレクションURI

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

マーチャントリダイレクションURIを設定する

@param

#merchant_redirection_uri マーチャントリダイレクションURI

# File tgMdk/lib/tg_mdk/mdk_dto/saison_authorize_request_dto.rb, line 103
def merchant_redirection_uri=(merchant_redirection_uri)
  @merchant_redirection_uri = merchant_redirection_uri
end
option_params() click to toggle source

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

@return

拡張パラメータリスト

# File tgMdk/lib/tg_mdk/mdk_dto/saison_authorize_request_dto.rb, line 128
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_authorize_request_dto.rb, line 137
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_authorize_request_dto.rb, line 77
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_authorize_request_dto.rb, line 86
def order_id=(order_id)
  @order_id = order_id
end
service_command() click to toggle source

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

@return

決済サービスコマンド

# File tgMdk/lib/tg_mdk/mdk_dto/saison_authorize_request_dto.rb, line 51
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_authorize_request_dto.rb, line 60
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_authorize_request_dto.rb, line 69
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_authorize_request_dto.rb, line 42
def service_type
  @service_type = nil unless instance_variable_defined?(:@service_type)
  @service_type
end
settlement_method() click to toggle source

決済方式を取得する

@return

決済方式

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

決済方式を設定する

@param

#settlement_method 決済方式

# File tgMdk/lib/tg_mdk/mdk_dto/saison_authorize_request_dto.rb, line 120
def settlement_method=(settlement_method)
  @settlement_method = settlement_method
end