class Veritrans::Tercerog::Mdk::FraudDetectionTotalDto

不正検知合計金額Dtoクラス

@author

VeriTrans Inc.

Public Instance Methods

amount() click to toggle source

合計金額を取得する

@return

合計金額

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_total_dto.rb, line 17
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/fraud_detection_total_dto.rb, line 26
def amount=(amount)
  @amount = amount
end
currency_code() click to toggle source

通貨コードを取得する

@return

通貨コード

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

通貨コードを設定する

@param

#currency_code 通貨コード

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_total_dto.rb, line 43
def currency_code=(currency_code)
  @currency_code = currency_code
end