class Veritrans::Tercerog::Mdk::TransactionInfo

検索結果:決済トランザクションのクラス

@author

VeriTrans Inc.

Public Instance Methods

amount() click to toggle source

金額を取得する

@return

金額

# File tgMdk/lib/tg_mdk/mdk_dto/transaction_info.rb, line 102
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/transaction_info.rb, line 111
def amount=(amount)
  @amount = amount
end
command() click to toggle source

コマンドを取得する

@return

コマンド

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

コマンドを設定する

@param

command コマンド

# File tgMdk/lib/tg_mdk/mdk_dto/transaction_info.rb, line 43
def command=(command)
  @command = command
end
mstatus() click to toggle source

ステータスコードを取得する

@return

ステータスコード

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

ステータスコードを設定する

@param

mstatus ステータスコード

# File tgMdk/lib/tg_mdk/mdk_dto/transaction_info.rb, line 60
def mstatus=(mstatus)
  @mstatus = mstatus
end
proper_transaction_info() click to toggle source

固有トランザクション情報を取得する

@return

固有トランザクション情報

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

固有トランザクション情報を設定する

@param

#proper_transaction_info 固有トランザクション情報

# File tgMdk/lib/tg_mdk/mdk_dto/transaction_info.rb, line 128
def proper_transaction_info=(proper_transaction_info)
  @proper_transaction_info = proper_transaction_info
end
txn_datetime() click to toggle source

取引日時を取得する

@return

取引日時

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

取引日時を設定する

@param

#txn_datetime 取引日時

# File tgMdk/lib/tg_mdk/mdk_dto/transaction_info.rb, line 94
def txn_datetime=(txn_datetime)
  @txn_datetime = txn_datetime
end
txn_id() click to toggle source

トランザクション管理IDを取得する

@return

トランザクション管理ID

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

トランザクション管理IDを設定する

@param

#txn_id トランザクション管理ID

# File tgMdk/lib/tg_mdk/mdk_dto/transaction_info.rb, line 26
def txn_id=(txn_id)
  @txn_id = txn_id
end
v_result_code() click to toggle source

結果コードを取得する

@return

結果コード

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

結果コードを設定する

@param

#v_result_code 結果コード

# File tgMdk/lib/tg_mdk/mdk_dto/transaction_info.rb, line 77
def v_result_code=(v_result_code)
  @v_result_code = v_result_code
end