LotusPayCheckout
Type: schema
TypeScript Definition
typescript
LotusPayCheckout: {{
/**
* @description The slug of the payment provider in Commerce Engine.
* @constant
*/
payment_provider_slug: "juspay";
/** @constant */
payment_method_type: "NACH";
/** @description The ID of the active mandate. */
mandate_id: string;
};
/**
* LoyaltyPointActivity
* @description Loyalty Point Activity
*/
}OpenAPI Schema
json
{
"title": "LotusPayCheckout",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/LotusPayCheckout",
"description": "API reference for the LotusPayCheckout schema"
},
"required": [
"payment_provider_slug",
"payment_method_type",
"mandate_id"
],
"properties": {
"payment_provider_slug": {
"description": "The slug of the payment provider in Commerce Engine.",
"type": "string",
"const": "juspay"
},
"payment_method_type": {
"type": "string",
"const": "NACH"
},
"mandate_id": {
"description": "The ID of the active mandate.",
"type": "string"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions