Class ScoreatpayContactDto
連絡先情報クラス
Inheritance
Inherited Members
Namespace: jp.veritrans.tercerog.mdk.dto
Assembly: cg-mdk-dto.dll
Syntax
public class ScoreatpayContactDto
Properties
Address1
住所(都道府県)
文字列 最大桁数:4
購入者の住所(都道府県)を指定します。
- 最小1文字。
Declaration
[JsonProperty("address1")]
public string Address1 { get; set; }
Property Value
Type | Description |
---|---|
string |
Address2
住所(市区町村)
文字列 最大桁数:31
購入者の住所(市区町村)を指定します。厳密な市区町村区分けが困難な場合、最小/最大文字数のみ考慮して指定してください。
- 最小2文字。
Declaration
[JsonProperty("address2")]
public string Address2 { get; set; }
Property Value
Type | Description |
---|---|
string |
Address3
住所(市区町村以降)
文字列 最大桁数:35
購入者の住所(市区町村以降)のを指定します。厳密な市区町村区分けが困難な場合、最小/最大文字数のみ考慮して指定してください。
- 最小2文字。
Declaration
[JsonProperty("address3")]
public string Address3 { get; set; }
Property Value
Type | Description |
---|---|
string |
CompanyName
会社名
文字列 最大桁数:35
購入者の会社名を指定します。
- 最小2文字。
Declaration
[JsonProperty("companyName")]
public string CompanyName { get; set; }
Property Value
Type | Description |
---|---|
string |
DepartmentName
部署名
文字列 最大桁数:35
購入者の部署名を指定します。
- 最小2文字。
Declaration
[JsonProperty("departmentName")]
public string DepartmentName { get; set; }
Property Value
Type | Description |
---|---|
string |
メールアドレス
文字列 最大桁数:100
購入者のメールアドレスを指定します。
- @とピリオド必須。
請求先情報として使用する場合は必須
発送先情報として使用する場合は必須でない
Declaration
[JsonProperty("email")]
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string |
FullKanaName
フルネーム(カナ)
文字列 最大桁数:35
購入者のフルネーム(カナ)を指定します。
- 最小2文字。
Declaration
[JsonProperty("fullKanaName")]
public string FullKanaName { get; set; }
Property Value
Type | Description |
---|---|
string |
FullName
フルネーム(漢字)
文字列 最大桁数:25
購入者のフルネーム(漢字)を指定します。
- 最小2文字。
Declaration
[JsonProperty("fullName")]
public string FullName { get; set; }
Property Value
Type | Description |
---|---|
string |
Mobile
携帯電話番号
半角数字記号 最大桁数:17
購入者の携帯電話番号を指定します。
- ハイフン利用可。
- 最小8桁。
発送先情報として使用する場合は無視される
Declaration
[JsonProperty("mobile")]
public string Mobile { get; set; }
Property Value
Type | Description |
---|---|
string |
MobileEmail
携帯メールアドレス
文字列 最大桁数:100
購入者の携帯メールアドレスを指定します。
- @とピリオド必須。
発送先情報として使用する場合は無視される
Declaration
[JsonProperty("mobileEmail")]
public string MobileEmail { get; set; }
Property Value
Type | Description |
---|---|
string |
Tel
電話番号
半角数字記号 最大桁数:17
購入者の電話番号を指定します。
- ハイフン利用可。
- 最小8桁。
Declaration
[JsonProperty("tel")]
public string Tel { get; set; }
Property Value
Type | Description |
---|---|
string |
ZipCode
郵便番号
半角数字記号 最大桁数:8
購入者の郵便番号を指定します。
- ハイフン利用可。
Declaration
[JsonProperty("zipCode")]
public string ZipCode { get; set; }
Property Value
Type | Description |
---|---|
string |