BankTransferCheckout
Type: schema
TypeScript Definition
typescript
BankTransferCheckout: {{
/**
* @description The slug of the payment provider in Commerce Engine.
* @constant
*/
payment_provider_slug: "icici-ecollection";
/** @constant */
payment_method_type: "bank-transfer";
};
/**
* BooleanAttribute
* @description Attribute for boolean values
*/
}OpenAPI Schema
json
{
"title": "BankTransferCheckout",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/BankTransferCheckout",
"description": "API reference for the BankTransferCheckout schema"
},
"required": [
"payment_provider_slug",
"payment_method_type"
],
"properties": {
"payment_provider_slug": {
"description": "The slug of the payment provider in Commerce Engine.",
"type": "string",
"const": "icici-ecollection"
},
"payment_method_type": {
"type": "string",
"const": "bank-transfer"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions