Class Account
会員情報のクラス
Inheritance
object
Account
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 Account
Properties
AccountBasic
会員基本情報
オブジェクト
会員基本情報を格納するオブジェクト
Declaration
[JsonProperty("accountBasic")]
public AccountBasic AccountBasic { get; set; }
Property Value
Type | Description |
---|---|
AccountBasic |
AccountId
会員ID
半角英数字
最大桁数:100
以下の文字も使用できます。
“.”(ドット)、“-”(ハイフン)、“_”(アンダースコア)、“@”(アットマーク)
Declaration
[JsonProperty("accountId")]
public string AccountId { get; set; }
Property Value
Type | Description |
---|---|
string |
AccountInfo
連絡先情報
オブジェクト配列
連絡先情報を格納するオブジェクト
Declaration
[JsonProperty("accountInfo")]
public AccountInfo[] AccountInfo { get; set; }
Property Value
Type | Description |
---|---|
AccountInfo[] |
BankAccountInfo
銀行口座情報
オブジェクト
Declaration
[JsonProperty("bankAccountInfo")]
public BankAccountInfo BankAccountInfo { get; set; }
Property Value
Type | Description |
---|---|
BankAccountInfo |
CardInfo
カード情報
オブジェクト配列
Declaration
[JsonProperty("cardInfo")]
public CardInfo[] CardInfo { get; set; }
Property Value
Type | Description |
---|---|
CardInfo[] |
OnetimeToken
ワンタイムトークン
半角数字
最大桁数:13
Declaration
[JsonProperty("onetimeToken")]
public string OnetimeToken { get; set; }
Property Value
Type | Description |
---|---|
string |
OnetimeTokenExpire
ワンタイムトークン有効期限
半角数字
最大桁数:14
Declaration
[JsonProperty("onetimeTokenExpire")]
public string OnetimeTokenExpire { get; set; }
Property Value
Type | Description |
---|---|
string |
RecurringCharge
会員課金情報
オブジェクト配列
Declaration
[JsonProperty("recurringCharge")]
public RecurringCharge[] RecurringCharge { get; set; }
Property Value
Type | Description |
---|---|
RecurringCharge[] |
TransData
リクエスト項目
半角英数字
最大桁数:256
レスポンスに含める項目を記述する。
“-”(ハイフン)、“_”(アンダースコア)、“,”(カンマ)
Declaration
[JsonProperty("transData")]
public string TransData { get; set; }
Property Value
Type | Description |
---|---|
string |