class Veritrans::Tercerog::Mdk::FraudDetectionTransactionDto

不正検知取引支払いDtoクラス

@author

VeriTrans Inc.

Public Instance Methods

cash_value() click to toggle source

取引金額を取得する

@return

取引金額

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

取引金額を設定する

取引金額オブジェクト

@param

#cash_value 取引金額

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_transaction_dto.rb, line 61
def cash_value=(cash_value)
  @cash_value = cash_value
end
category() click to toggle source

取引種別を取得する

@return

取引種別

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

取引種別を設定する

@param

category 取引種別

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_transaction_dto.rb, line 113
def category=(category)
  @category = category
end
id() click to toggle source

取引IDを取得する

@return

取引ID

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

取引IDを設定する

@param

id 取引ID

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_transaction_dto.rb, line 43
def id=(id)
  @id = id
end
method_card() click to toggle source

カードメソッドを取得する

@return

カードメソッド

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

カードメソッドを設定する

カードメソッドオブジェクト

@param

#method_card カードメソッド

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_transaction_dto.rb, line 131
def method_card=(method_card)
  @method_card = method_card
end
payer() click to toggle source

支払者を取得する

@return

支払者

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

支払者を設定する

支払者の連絡先。contacts オブジェクトrefIdを設定してください。

@param

payer 支払者

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_transaction_dto.rb, line 96
def payer=(payer)
  @payer = payer
end
time() click to toggle source

取引日時を取得する

@return

取引日時

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

取引日時を設定する

@param

time 取引日時

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_transaction_dto.rb, line 78
def time=(time)
  @time = time
end
type() click to toggle source

取引分類を取得する

@return

取引分類

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

取引分類を設定する

@param

type 取引分類

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_transaction_dto.rb, line 26
def type=(type)
  @type = type
end