CustomerGiftUrlAccepted
顧客向けスキップ時ギフト注文の決済処理待ちのレスポンス
type CustomerGiftUrlAccepted {
status: Int!
message: String!
code: String!
}
Fields
CustomerGiftUrlAccepted.status
● Int!
non-null scalar
ステータス
- 説明: ステータスコード
- データ例:
202
CustomerGiftUrlAccepted.message
● String!
non-null scalar
メッセージ
- 説明: 決済処理待ちのメッセージ
- データ例:
スキップ時ギフト注文の決済処理待ち
CustomerGiftUrlAccepted.code
● String!
non-null scalar
ステータスコード
- 説明: ステータスコード
- データ例:
ACCEPTED
Example
{
"status": 202,
"message": "OK",
"code": "OK"
}
Implemented By
ResultCustomerGiftUrl
union