Class EposAuthorizeRequestDto
決済サービスタイプ:エポス、コマンド名:決済申込の要求Dtoクラス
Implements
Inherited Members
Namespace: jp.veritrans.tercerog.mdk.dto
Assembly: cg-mdk-dto.dll
Syntax
public class EposAuthorizeRequestDto : AbstractPaymentRequestDto, IRequestDto
Properties
Amount
決済金額
半角数字 最大桁数:8
決済金額を指定します。
- 1 以上かつ 99999999(8桁) 以下
Declaration
[JsonProperty("amount")]
public string Amount { get; set; }
Property Value
Type | Description |
---|---|
string |
CancelUrl
決済キャンセル時URL
URL(半角) 最大桁数:256
決済キャンセル時に、店舗側サイトに画面遷移を戻すためのURLを指定します。
- 半角256文字以内
※ 未指定の場合は、マーチャント登録時に設定した値を使用
Declaration
[JsonProperty("cancelUrl")]
public string CancelUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
CustomerId
加盟店顧客ID
半角英数字 最大桁数:32
マーチャントにて顧客を一意に識別するIDを指定します。
Declaration
[JsonProperty("customerId")]
public string CustomerId { get; set; }
Property Value
Type | Description |
---|---|
string |
ErrorUrl
決済エラー時URL
URL(半角) 最大桁数:256
決済エラー時に、店舗側サイトに画面遷移を戻すためのURLを指定します。
- 半角256文字以内
※ 未指定の場合は、マーチャント登録時に設定した値を使用
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 |
PushUrl
プッシュ先URL
URL(半角) 最大桁数:256
「ダミー取引」時のプッシュURLを指定します。
- 半角256文字以内
※ 未指定の場合は、マーチャント登録時に設定した値を使用
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
ServiceType
決済サービスタイプ
Declaration
[JsonIgnore]
public override string ServiceType { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
SuccessUrl
決済完了時URL
URL(半角) 最大桁数:256
決済完了後に、店舗側サイトに画面遷移を戻すためのURLを指定します。
- 半角256文字以内
※ 未指定の場合は、マーチャント登録時に設定した値を使用
Declaration
[JsonProperty("successUrl")]
public string SuccessUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
WithCapture
与信同時売上フラグ
英字(boolean) 最大桁数:5
- true : 与信同時売上
- false : 与信のみ
※未指定の場合は、false。
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 |