Class BankpayAccountDto
口座照会情報クラス
Inheritance
object
BankpayAccountDto
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 BankpayAccountDto
Properties
AccountId
口座ID
半角数字 最大桁数:100
検索対象口座の口座IDを返却します。
会員IDに紐づく口座ID
Declaration
[JsonProperty("accountId")]
public string AccountId { 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 |
DepositType
預金種目
半角数字 最大桁数:1
検索対象口座の預金種目コードを返却します。
Declaration
[JsonProperty("depositType")]
public string DepositType { get; set; }
Property Value
Type | Description |
---|---|
string |
IsValid
有効区分
文字列 最大桁数:5
検索対象口座の有効区分を返却します。
Declaration
[JsonProperty("isValid")]
public string IsValid { get; set; }
Property Value
Type | Description |
---|---|
string |
MaskedAccountName
口座名義人名
文字列 最大桁数:30
検索対象口座の口座名義人名を返却します。
Declaration
[JsonProperty("maskedAccountName")]
public string MaskedAccountName { get; set; }
Property Value
Type | Description |
---|---|
string |
MaskedAccountNum
口座番号
半角数字記号 最大桁数:7
検索対象口座の口座番号を返却します。
Declaration
[JsonProperty("maskedAccountNum")]
public string MaskedAccountNum { get; set; }
Property Value
Type | Description |
---|---|
string |