UpdateInboundBankAccount
Type: schema
TypeScript Definition
typescript
UpdateInboundBankAccount: {{
/**
* @description discriminator enum property added by openapi-typescript
* @enum {string}
*/
account_type: "inbound";
/** @description default account for inbound bank accounts. */
is_default?: boolean;
};
/** UpdateOutboundBankAccount */
}OpenAPI Schema
json
{
"title": "UpdateInboundBankAccount",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/UpdateInboundBankAccount",
"description": "API reference for the UpdateInboundBankAccount schema"
},
"properties": {
"account_type": {
"const": "inbound"
},
"is_default": {
"description": "default account for inbound bank accounts.",
"type": "boolean"
}
},
"x-tags": [
"Customers"
]
}Auto-generated from OpenAPI spec and TypeScript definitions