Business
Type: schema
TypeScript Definition
typescript
Business: {{
business_type: string;
name: string;
pan_number: string;
gstin?: string | null;
};
/** BuyXGetYCouponPromotion */
}OpenAPI Schema
json
{
"title": "Business",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/Business",
"description": "API reference for the Business schema"
},
"required": [
"business_type",
"name",
"pan_number"
],
"properties": {
"business_type": {
"type": "string"
},
"name": {
"type": "string"
},
"pan_number": {
"type": "string"
},
"gstin": {
"type": [
"string",
"null"
]
}
},
"examples": []
}Auto-generated from OpenAPI spec and TypeScript definitions