Class AccountInfo
連絡先情報のクラス
Inheritance
object
AccountInfo
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 AccountInfo
Properties
AccountInfoId
連絡先ID
半角英数字
最大桁数:24
連絡先を一意に識別するためのID
Declaration
[JsonProperty("accountInfoId")]
public string AccountInfoId { get; set; }
Property Value
Type | Description |
---|---|
string |
AccountType
連絡先区分
半角数字
最大桁数:2
"01":請求先
"02":送付先
Declaration
[JsonProperty("accountType")]
public string AccountType { get; set; }
Property Value
Type | Description |
---|---|
string |
Address
住所
文字列
最大桁数:200
Declaration
[JsonProperty("address")]
public string Address { get; set; }
Property Value
Type | Description |
---|---|
string |
DefaultAccount
標準連絡先フラグ
半角数字
最大桁数:1
"1":この連絡先区分として標準で使用する連絡先である。
"0":この連絡先区分として標準で使用する連絡先でない。
Declaration
[JsonProperty("defaultAccount")]
public string DefaultAccount { get; set; }
Property Value
Type | Description |
---|---|
string |
Recipient
宛名
半角数字
最大桁数:100
“-”(ハイフン)も使用可能
Declaration
[JsonProperty("recipient")]
public string Recipient { get; set; }
Property Value
Type | Description |
---|---|
string |
Tel
電話番号
半角数字
最大桁数:20
“-”(ハイフン)も使用可能
Declaration
[JsonProperty("tel")]
public string Tel { get; set; }
Property Value
Type | Description |
---|---|
string |
Zip
郵便番号
半角数字
最大桁数:8
“-”(ハイフン)も使用可能
Declaration
[JsonProperty("zip")]
public string Zip { get; set; }
Property Value
Type | Description |
---|---|
string |