Class BankAccountInfo
銀行口座情報のクラス
Inheritance
object
BankAccountInfo
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 BankAccountInfo
Properties
AccountName
口座名義
文字列
最大桁数:50
Declaration
[JsonProperty("accountName")]
public string AccountName { get; set; }
Property Value
Type | Description |
---|---|
string |
AccountNumber
口座番号
半角数字
最大桁数:7
Declaration
[JsonProperty("accountNumber")]
public string AccountNumber { get; set; }
Property Value
Type | Description |
---|---|
string |
AccountType
口座種別
半角数字
最大桁数:1
Declaration
[JsonProperty("accountType")]
public string AccountType { get; set; }
Property Value
Type | Description |
---|---|
string |
BankCode
金融機関コード
半角数字
最大桁数:4
Declaration
[JsonProperty("bankCode")]
public string BankCode { get; set; }
Property Value
Type | Description |
---|---|
string |
BranchCode
支店コード
半角数字
最大桁数:3
Declaration
[JsonProperty("branchCode")]
public string BranchCode { get; set; }
Property Value
Type | Description |
---|---|
string |