JusPayHyperCheckout
Type: schema
TypeScript Definition
typescript
JusPayHyperCheckout: {{
/** @description The slug of the payment provider in Commerce Engine. */
payment_provider_slug: string;
/** @constant */
integration_type: "hyper-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;
/**
* @description The action to be performed. `paymentPage` is the default option that you should select when using hyper-checkout.
* @enum {string}
*/
action: "paymentPage";
};
/** JusPayHyperCheckoutResponse */
}OpenAPI Schema
json
{
"title": "JusPayHyperCheckout",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/JusPayHyperCheckout",
"description": "API reference for the JusPayHyperCheckout schema"
},
"required": [
"payment_provider_slug",
"integration_type",
"gateway_reference_id",
"return_url",
"action"
],
"properties": {
"payment_provider_slug": {
"description": "The slug of the payment provider in Commerce Engine.",
"type": "string"
},
"integration_type": {
"type": "string",
"const": "hyper-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"
},
"action": {
"description": "The action to be performed. `paymentPage` is the default option that you should select when using hyper-checkout.",
"type": "string",
"enum": [
"paymentPage"
]
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions