Class FraudDetectionUserAccountDto
不正検知ユーザアカウントDtoクラス
Inheritance
object
FraudDetectionUserAccountDto
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: jp.veritrans.tercerog.mdk.dto
Assembly: cg-mdk-dto.dll
Syntax
public class FraudDetectionUserAccountDto
Properties
AccountHolder
アカウント保有者
半角英数字 最大桁数:20
アカウント保有者。contacts オブジェクトrefIdを設定してください。
Declaration
[JsonProperty("accountHolder")]
public string AccountHolder { get; set; }
Property Value
Type | Description |
---|---|
string |
EnrollmentTime
アクセス開始日時
半角英数字 最大桁数:24
オンラインアカウント アクセス開始日時を"YYYY-MM-DDTHH:MM:SS.MsMsMsZ"で設定してください。
Declaration
[JsonProperty("enrollmentTime")]
public string EnrollmentTime { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
ユーザアカウントID
半角英数字 最大桁数:10
貴社システムでの、一意なエンドユーザアカウント ID。
Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
LastActionTimes
最終アクション情報
FraudDetectionLastActionTimesDto
最終アクション情報オブジェクト
Declaration
[JsonProperty("lastActionTimes")]
public FraudDetectionLastActionTimesDto LastActionTimes { get; set; }
Property Value
Type | Description |
---|---|
FraudDetectionLastActionTimesDto |
ReturnCustomer
リピート顧客フラグ
true/false 最大桁数:5
アカウント保有者がリピート顧客であるかを示すフラグ。「true, false」の何れかを設定してください。(true:リピート顧客)
Declaration
[JsonProperty("returnCustomer")]
public string ReturnCustomer { get; set; }
Property Value
Type | Description |
---|---|
string |
Tof
アカウントが作成されてからの日数
半角数字 最大桁数:7
アカウントが作成されてからの日数を設定してください。
Declaration
[JsonProperty("tof")]
public string Tof { get; set; }
Property Value
Type | Description |
---|---|
string |
Username
ユーザ名
半角英数字 最大桁数:200
アカウント保有者のユーザ名を設定してください。
Declaration
[JsonProperty("username")]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string |