class Veritrans::Tercerog::Mdk::FraudDetectionLastActionTimesDto

不正検知最終アクション情報Dtoクラス

@author

VeriTrans Inc.

Public Instance Methods

previous_successful_login() click to toggle source

最終ログイン日時を取得する

最終ログイン日時を“YYYY-MM-DDTHH:MM:SS.MsMsMsZ”で設定してください。

@return

最終ログイン日時

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

最終ログイン日時を設定する

最終ログイン日時を“YYYY-MM-DDTHH:MM:SS.MsMsMsZ”で設定してください。

@param

#previous_successful_login 最終ログイン日時

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_last_action_times_dto.rb, line 29
def previous_successful_login=(previous_successful_login)
  @previous_successful_login = previous_successful_login
end
transfer_threshold_updated() click to toggle source

送金限度額の最終変更日時を取得する

送金限度額の最終変更日時を“YYYY-MM-DDTHH:MM:SS.MsMsMsZ”で設定してください。

@return

送金限度額の最終変更日時

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

送金限度額の最終変更日時を設定する

送金限度額の最終変更日時を“YYYY-MM-DDTHH:MM:SS.MsMsMsZ”で設定してください。

@param

#transfer_threshold_updated 送金限度額の最終変更日時

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_last_action_times_dto.rb, line 48
def transfer_threshold_updated=(transfer_threshold_updated)
  @transfer_threshold_updated = transfer_threshold_updated
end