Class CvspayAuthorizeRequestDto
決済サービスタイプ:コンビニペイ、コマンド名:与信の要求Dtoクラス
Implements
Inherited Members
Namespace: jp.veritrans.tercerog.mdk.dto
Assembly: cg-mdk-dto.dll
Syntax
public class CvspayAuthorizeRequestDto : AbstractPaymentRequestDto, IRequestDto
Properties
Amount
決済金額
半角数字 最大桁数:8
決済金額を指定します。
- 1 以上かつ 99999999 以下
Declaration
[JsonProperty("amount")]
public string Amount { get; set; }
Property Value
Type | Description |
---|---|
string |
CancelUrl
決済キャンセル時URL
URL(半角) 最大桁数:256
決済キャンセル時に、店舗側サイトに画面遷移を戻すためのURLを指定します。
- 半角256文字以内
※ 未指定の場合は、マーチャント登録時に設定した値を使用
payType=0(オンライン決済):指定任意
Declaration
[JsonProperty("cancelUrl")]
public string CancelUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
ErrorUrl
決済エラー時URL
URL(半角) 最大桁数:256
決済エラー時に、店舗側サイトに画面遷移を戻すためのURLを指定します。
- 半角256文字以内
※ 未指定の場合は、マーチャント登録時に設定した値を使用
payType=0(オンライン決済):指定任意
Declaration
[JsonProperty("errorUrl")]
public string ErrorUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
MaskedLog
ログ用文字列(マスク済み)を設定する @param maskedLog ログ用文字列(マスク済み)
Declaration
[JsonIgnore]
public override string MaskedLog { set; }
Property Value
Type | Description |
---|---|
string |
Overrides
OrderId
取引ID
半角英数字 最大桁数:100
- マーチャント側で取引を一意に表す注文管理IDを指定します。
- 申込処理ごとに一意である必要があります。
- 半角英数字、“-”(ハイフン)、“_”(アンダースコア)も使用可能です。
Declaration
[JsonProperty("orderId")]
public string OrderId { get; set; }
Property Value
Type | Description |
---|---|
string |
PayType
決済種別
半角数字 最大桁数:1
決済種別を指定します。(設定可能な値は"0"(オンライン決済)のみです。)
"0":オンライン決済
Declaration
[JsonProperty("payType")]
public string PayType { get; set; }
Property Value
Type | Description |
---|---|
string |
PushUrl
プッシュ先URL
URL(半角) 最大桁数:256
「ダミー取引」時のプッシュURLを指定します。
- 半角256文字以内
※ 本パラメータは店舗側システムの開発時にのみ利用されることを想定しており、ダミー取引で指定可能です。
payType=0(オンライン決済):指定任意
Declaration
[JsonProperty("pushUrl")]
public string PushUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
ServiceCommand
決済サービスコマンド
Declaration
[JsonIgnore]
public override string ServiceCommand { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
ServiceOptionType
サービスオプションタイプ
半角英数字
- "famipay":ファミペイ
(設定可能な値は"famipay"(ファミペイ)のみです。)
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
SuccessUrl
決済完了時URL
URL(半角) 最大桁数:256
決済完了後に、店舗側サイトに画面遷移を戻すためのURLを指定します。
- 半角256文字以内
※ 未指定の場合は、マーチャント登録時に設定した値を使用
payType=0(オンライン決済):指定任意
Declaration
[JsonProperty("successUrl")]
public string SuccessUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
WithCapture
与信同時売上フラグ
英字(boolean)
- true : 与信同時売上(設定可能な値は"true"のみです。)
※未指定の場合は、true:与信同時売上。
Declaration
[JsonProperty("withCapture")]
public string WithCapture { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
ToString()
ログ用文字列(マスク済み)を取得する @return ログ用文字列(マスク済み)
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |