Skip to content

BusinessInfo

Type: schema

TypeScript Definition

typescript
BusinessInfo: {{
            name?: string;
            business_type?: string;
            pan_number?: string;
            gstin?: string;
            is_registered_under_gst?: boolean;
        };
        /**
         * CardPayment
         * @description Payments using credit card, debit card
         */
}

OpenAPI Schema

json
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "business_type": {
      "type": "string"
    },
    "pan_number": {
      "type": "string"
    },
    "gstin": {
      "type": "string"
    },
    "is_registered_under_gst": {
      "type": "boolean"
    }
  },
  "title": "BusinessInfo",
  "x-tags": [
    "Customers"
  ]
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: