Skip to content

CreateInboundBankAccount

Type: schema

TypeScript Definition

typescript
CreateInboundBankAccount: {{
            /**
             * @description discriminator enum property added by openapi-typescript
             * @enum {string}
             */
            account_type: "inbound";
            service_provider_slug: string;
            /** @description default bank account for the customer. */
            is_default?: boolean;
        };
        /** CreateOrderReturn */
}

OpenAPI Schema

json
{
  "title": "CreateInboundBankAccount",
  "type": "object",
  "externalDocs": {
    "url": "https://llm-docs.commercengine.io/storefront/schemas/CreateInboundBankAccount",
    "description": "API reference for the CreateInboundBankAccount schema"
  },
  "required": [
    "account_type",
    "service_provider_slug"
  ],
  "properties": {
    "account_type": {
      "const": "inbound"
    },
    "service_provider_slug": {
      "type": "string"
    },
    "is_default": {
      "description": "default bank account for the customer.",
      "type": "boolean"
    }
  },
  "x-tags": [
    "Customers"
  ]
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: