class Veritrans::Tercerog::Mdk::FraudDetectionUserAccountDto

不正検知ユーザアカウントDtoクラス

@author

VeriTrans Inc.

Public Instance Methods

account_holder() click to toggle source

アカウント保有者を取得する

アカウント保有者。contacts オブジェクトrefIdを設定してください。

@return

アカウント保有者

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

アカウント保有者を設定する

アカウント保有者。contacts オブジェクトrefIdを設定してください。

@param

#account_holder アカウント保有者

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_user_account_dto.rb, line 67
def account_holder=(account_holder)
  @account_holder = account_holder
end
enrollment_time() click to toggle source

アクセス開始日時を取得する

オンラインアカウント アクセス開始日時を“YYYY-MM-DDTHH:MM:SS.MsMsMsZ”で設定してください。

@return

アクセス開始日時

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

アクセス開始日時を設定する

オンラインアカウント アクセス開始日時を“YYYY-MM-DDTHH:MM:SS.MsMsMsZ”で設定してください。

@param

#enrollment_time アクセス開始日時

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_user_account_dto.rb, line 48
def enrollment_time=(enrollment_time)
  @enrollment_time = enrollment_time
end
id() click to toggle source

ユーザアカウントIDを取得する

貴社システムでの、一意なエンドユーザアカウント ID。

@return

ユーザアカウントID

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

ユーザアカウントIDを設定する

貴社システムでの、一意なエンドユーザアカウント ID。

@param

id ユーザアカウントID

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_user_account_dto.rb, line 29
def id=(id)
  @id = id
end
last_action_times() click to toggle source

最終アクション情報を取得する

最終アクション情報オブジェクト

@return

最終アクション情報

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

最終アクション情報を設定する

最終アクション情報オブジェクト

@param

#last_action_times 最終アクション情報

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_user_account_dto.rb, line 124
def last_action_times=(last_action_times)
  @last_action_times = last_action_times
end
return_customer() click to toggle source

リピート顧客フラグを取得する

アカウント保有者がリピート顧客であるかを示すフラグ。「true, false」の何れかを設定してください。(true:リピート顧客)

@return

リピート顧客フラグ

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

リピート顧客フラグを設定する

アカウント保有者がリピート顧客であるかを示すフラグ。「true, false」の何れかを設定してください。(true:リピート顧客)

@param

#return_customer リピート顧客フラグ

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_user_account_dto.rb, line 86
def return_customer=(return_customer)
  @return_customer = return_customer
end
username() click to toggle source

ユーザ名を取得する

アカウント保有者のユーザ名を設定してください。

@return

ユーザ名

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

ユーザ名を設定する

アカウント保有者のユーザ名を設定してください。

@param

username ユーザ名

# File tgMdk/lib/tg_mdk/mdk_dto/fraud_detection_user_account_dto.rb, line 105
def username=(username)
  @username = username
end