CreateBankAccount
Type: schema
TypeScript Definition
typescript
CreateBankAccount: components["schemas"]["CreateOutboundBankAccount"] | components["schemas"]["CreateInboundBankAccount"]Component References
| Reference | Resolves To |
|---|---|
components["schemas"]["CreateOutboundBankAccount"] | CreateOutboundBankAccount |
components["schemas"]["CreateInboundBankAccount"] | CreateInboundBankAccount |
OpenAPI Schema
json
{
"title": "CreateBankAccount",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/CreateBankAccount",
"description": "API reference for the CreateBankAccount schema"
},
"discriminator": {
"propertyName": "account_type",
"mapping": {
"outbound": "#/components/schemas/CreateOutboundBankAccount",
"inbound": "#/components/schemas/CreateInboundBankAccount"
}
},
"oneOf": [
{
"$ref": "#/components/schemas/CreateOutboundBankAccount"
},
{
"$ref": "#/components/schemas/CreateInboundBankAccount"
}
],
"x-tags": [
"Customers"
]
}Auto-generated from OpenAPI spec and TypeScript definitions