Class FraudDetectionContactDto
不正検知連絡先Dtoクラス
Inheritance
Inherited Members
Namespace: jp.veritrans.tercerog.mdk.dto
Assembly: cg-mdk-dto.dll
Syntax
public class FraudDetectionContactDto
Properties
BirthDate
生年月日
半角英数字 最大桁数:10
"YYYY-MM-DD"の形式で設定してください。
Declaration
[JsonProperty("birthDate")]
public string BirthDate { get; set; }
Property Value
Type | Description |
---|---|
string |
City
都道府県
文字列 最大桁数:20
47 都道府県名称を設定してください。
Declaration
[JsonProperty("city")]
public string City { get; set; }
Property Value
Type | Description |
---|---|
string |
Company
会社名
文字列 最大桁数:120
連絡先会社名
Declaration
[JsonProperty("company")]
public string Company { get; set; }
Property Value
Type | Description |
---|---|
string |
CountryCode
国名コード
半角英字 最大桁数:2
国名コード(ISO 3166-2:2007)を設定してください。
Declaration
[JsonProperty("countryCode")]
public string CountryCode { get; set; }
Property Value
Type | Description |
---|---|
string |
EmailAddress
Eメールアドレス
半角英数字 最大桁数:60
メールアドレス
Declaration
[JsonProperty("emailAddress")]
public string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
EmailAddressType
Eメールアドレス分類
半角英字 最大桁数:20
メールアドレスの分類。
「PERSONAL,WORK,UNKNOWN」の何れかを設定してください。
PERSONAL:個人用
WORK:仕事用
UNKNOWN:不明
Declaration
[JsonProperty("emailAddressType")]
public string EmailAddressType { get; set; }
Property Value
Type | Description |
---|---|
string |
FirstName
名
文字列 最大桁数:30
連絡先氏名(名)
Declaration
[JsonProperty("firstName")]
public string FirstName { get; set; }
Property Value
Type | Description |
---|---|
string |
LastName
姓
文字列 最大桁数:30
連絡先氏名(姓)
Declaration
[JsonProperty("lastName")]
public string LastName { get; set; }
Property Value
Type | Description |
---|---|
string |
MothersMaidenName
旧姓
文字列 最大桁数:50
母方の姓、旧姓を設定してください。
Declaration
[JsonProperty("mothersMaidenName")]
public string MothersMaidenName { get; set; }
Property Value
Type | Description |
---|---|
string |
PhoneNumber
電話番号
半角数字 最大桁数:13
電話番号をハイフンを除いた数字で設定してください。
※addressで指定されたcountryCodeの国の電話番号として取り扱います。
Declaration
[JsonProperty("phoneNumber")]
public string PhoneNumber { get; set; }
Property Value
Type | Description |
---|---|
string |
PhoneNumberType
電話番号分類
半角英字 最大桁数:20
電話番号の分類。
「HOME,MOBILE,WORK,COMPANY,FAX,UNKNOWN」の何れかを設定してください。
HOME:自宅
MOBILE:モバイル
WORK:仕事用
COMPANY:会社
FAX:ファックス
UNKNOWN:不明
Declaration
[JsonProperty("phoneNumberType")]
public string PhoneNumberType { get; set; }
Property Value
Type | Description |
---|---|
string |
Postal
郵便番号
半角英数字 最大桁数:9
郵便番号をハイフン無で設定してください。
Declaration
[JsonProperty("postal")]
public string Postal { get; set; }
Property Value
Type | Description |
---|---|
string |
RefId
参照Key
半角英数字 最大桁数:20
他項目から、連絡先オブジェクトへの参照用の Key 名称。
Declaration
[JsonProperty("refId")]
public string RefId { get; set; }
Property Value
Type | Description |
---|---|
string |
StateProvinceCode
都道府県略号
半角英数字 最大桁数:3
都道府県の略号(ISO 3166-2:2007)の英数字1~3桁を設定してください。
Declaration
[JsonProperty("stateProvinceCode")]
public string StateProvinceCode { get; set; }
Property Value
Type | Description |
---|---|
string |
StreetLine
住所1
文字列 最大桁数:255
住所1。住所2と合わせて住所情報となるよう設定してください。
Declaration
[JsonProperty("streetLine")]
public string StreetLine { get; set; }
Property Value
Type | Description |
---|---|
string |
StreetLine2
住所2
文字列 最大桁数:255
住所2。住所1と合わせて住所情報となるよう設定してください。
Declaration
[JsonProperty("streetLine2")]
public string StreetLine2 { get; set; }
Property Value
Type | Description |
---|---|
string |