Class RecruitAuthorizeRequestDto
決済サービスタイプ:リクルート、コマンド名:与信の要求Dtoクラス
Implements
Inherited Members
Namespace: jp.veritrans.tercerog.mdk.dto
Assembly: cg-mdk-dto.dll
Syntax
public class RecruitAuthorizeRequestDto : AbstractPaymentRequestDto, IRequestDto
Properties
Amount
決済金額
半角数字 最大桁数:7
決済金額を指定します。
- 1 以上かつ 9999999(7桁) 以下
Declaration
[JsonProperty("amount")]
public string Amount { 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 |
ItemId
商品番号
半角英数字 最大桁数:64
マーチャントシステム内で商品やサービスを特定するID
Declaration
[JsonProperty("itemId")]
public string ItemId { get; set; }
Property Value
Type | Description |
---|---|
string |
ItemName
商品名
文字列 最大桁数:256
商品名
- 最大文字数:256文字
Declaration
[JsonProperty("itemName")]
public string ItemName { 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)
- 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 |