Class BankpayAuthorizeRequestDto
決済サービスタイプ:bankpay、コマンド名:決済申込の要求Dtoクラス
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: jp.veritrans.tercerog.mdk.dto
Assembly: cg-mdk-dto.dll
Syntax
public class BankpayAuthorizeRequestDto : AbstractPaymentRequestDto, IRequestDto
Properties
AccountId
口座ID
半角英数 最大桁数:100
決済申込対象の口座IDを指定します。
Declaration
[JsonProperty("accountId")]
public string AccountId { get; set; }
Property Value
Type | Description |
---|---|
string |
AccountingType
課金種別
半角数字 最大桁数:1
"0":都度決済
"1":継続課金
"2":チャージ(オープン)
"3":チャージ(ハウス)
"4":チャージ(資金移動)
Declaration
[JsonProperty("accountingType")]
public string AccountingType { get; set; }
Property Value
Type | Description |
---|---|
string |
Amount
決済金額
数値 最大桁数:7
決済金額を指定します。
- 1 以上かつ 9999999(7桁) 以下
Declaration
[JsonProperty("amount")]
public string Amount { get; set; }
Property Value
Type | Description |
---|---|
string |
MaskedLog
ログ用文字列(マスク済み)を設定する @param maskedLog ログ用文字列(マスク済み)
Declaration
[JsonIgnore]
public override string MaskedLog { set; }
Property Value
Type | Description |
---|---|
string |
Overrides
MemberId
会員ID
半角英数 最大桁数:100
決済申込対象の会員IDを指定します。
Declaration
[JsonProperty("memberId")]
public string MemberId { get; set; }
Property Value
Type | Description |
---|---|
string |
OrderId
取引ID
半角英数 最大桁数:100
- マーチャント側で取引を一意に表す注文管理IDを指定します。
- 申込処理ごとに一意である必要があります。
- 半角英数、“-”(ハイフン)、“_”(アンダースコア)も使用可能です。
Declaration
[JsonProperty("orderId")]
public string OrderId { get; set; }
Property Value
Type | Description |
---|---|
string |
ServiceCommand
決済サービスコマンド
Declaration
[JsonIgnore]
public override string ServiceCommand { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
ServiceOptionType
サービスオプションタイプ
半角英数
- "online":オンライン決済
Declaration
[JsonProperty("serviceOptionType")]
public string ServiceOptionType { get; set; }
Property Value
Type | Description |
---|---|
string |
ServiceType
決済サービスタイプ
Declaration
[JsonIgnore]
public override string ServiceType { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
StoreId
店舗ID
半角英数 最大桁数:5
店舗IDを指定します。
Declaration
[JsonProperty("storeId")]
public string StoreId { get; set; }
Property Value
Type | Description |
---|---|
string |
StoreName
店舗名
文字列 最大桁数:50
店舗名を指定します。
Declaration
[JsonProperty("storeName")]
public string StoreName { get; set; }
Property Value
Type | Description |
---|---|
string |
TerminalId
端末機識別番号
半角英数記号 最大桁数:13
端末機識別番号を入力します。
店舗POSなどの決済端末を識別する値を指定
チャージのみの利用の場合は、一意な値を設定。
流通決済事業者コードを設定可能な場合は先頭5桁の設定を推奨。
Declaration
[JsonProperty("terminalId")]
public string TerminalId { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
ToString()
ログ用文字列(マスク済み)を取得する @return ログ用文字列(マスク済み)
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |
Overrides
object.ToString()