CreateOutboundBankAccount
Type: schema
TypeScript Definition
typescript
CreateOutboundBankAccount: {{
/**
* @description discriminator enum property added by openapi-typescript
* @enum {string}
*/
account_type: "outbound";
account_name: string;
account_number: string;
ifsc_code: string;
bank_name: string;
/** @description default bank account for the customer. */
is_default?: boolean;
};
/**
* CreateProductReview
* @description Create Product Review model
*/
}OpenAPI Schema
json
{
"title": "CreateOutboundBankAccount",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/CreateOutboundBankAccount",
"description": "API reference for the CreateOutboundBankAccount schema"
},
"required": [
"account_type",
"account_name",
"account_number",
"ifsc_code",
"bank_name"
],
"properties": {
"account_type": {
"const": "outbound"
},
"account_name": {
"type": "string"
},
"account_number": {
"type": "string"
},
"ifsc_code": {
"type": "string"
},
"bank_name": {
"type": "string"
},
"is_default": {
"description": "default bank account for the customer.",
"type": "boolean"
}
},
"x-tags": [
"Customers"
]
}Auto-generated from OpenAPI spec and TypeScript definitions