Skip to content

UpdateOutboundBankAccount

Type: schema

TypeScript Definition

typescript
UpdateOutboundBankAccount: {{
            /**
             * @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 account for outbound bank accounts. */
            is_default?: boolean;
        };
        /** UpdatePhysicalProductSubscription */
}

OpenAPI Schema

json
{
  "title": "UpdateOutboundBankAccount",
  "type": "object",
  "externalDocs": {
    "url": "https://llm-docs.commercengine.io/storefront/schemas/UpdateOutboundBankAccount",
    "description": "API reference for the UpdateOutboundBankAccount schema"
  },
  "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 account for outbound bank accounts.",
      "type": "boolean"
    }
  },
  "x-tags": [
    "Customers"
  ]
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: