Properties
| Name | Type | Description |
|---|---|---|
| paymentData | string | Encoded payment data. |
| paymentMethodType | string | Specifies the payment method. |
| sdkData | object | The data to pass to the SDK. |
| type | string | The type of the action. |
| url | string | Specifies the URL to redirect to. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CheckoutSDKAction",
"title": "CheckoutSDKAction",
"additionalProperties": false,
"properties": {
"paymentData": {
"description": "Encoded payment data.",
"type": "string"
},
"paymentMethodType": {
"description": "Specifies the payment method.",
"type": "string"
},
"sdkData": {
"additionalProperties": {
"type": "string"
},
"description": "The data to pass to the SDK.",
"type": "object"
},
"type": {
"description": "The type of the action.",
"enum": [
"sdk",
"wechatpaySDK"
],
"type": "string"
},
"url": {
"description": "Specifies the URL to redirect to.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}