JusPayExpressCheckoutCommonField
Type: schema
TypeScript Definition
typescript
JusPayExpressCheckoutCommonField: {{
/** @description The slug of the payment provider in Commerce Engine. */
payment_provider_slug: string;
/** @constant */
integration_type: "express-checkout";
/** @description The reference ID of the payment gateway. When provided, payments will always be routed through this gateway. */
gateway_reference_id: string;
/** @description The URL to which the customer will be redirected after the payment is complete. */
return_url: string;
};
/** JusPayExpressCheckoutResponse */
}OpenAPI Schema
json
{
"title": "JusPayExpressCheckoutCommonField",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/JusPayExpressCheckoutCommonField",
"description": "API reference for the JusPayExpressCheckoutCommonField schema"
},
"required": [
"payment_provider_slug",
"integration_type",
"gateway_reference_id",
"return_url"
],
"properties": {
"payment_provider_slug": {
"description": "The slug of the payment provider in Commerce Engine.",
"type": "string"
},
"integration_type": {
"type": "string",
"const": "express-checkout"
},
"gateway_reference_id": {
"description": "The reference ID of the payment gateway. When provided, payments will always be routed through this gateway.",
"type": "string"
},
"return_url": {
"description": "The URL to which the customer will be redirected after the payment is complete.",
"type": "string"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions