Pincode
Type: schema
Description
Pincode model
TypeScript Definition
typescript
Pincode: {{
pincode?: string;
city?: string;
state_name?: string;
country_name?: string;
country_iso_code?: string;
};
/** PincodeServiceability */
}OpenAPI Schema
json
{
"title": "Pincode",
"description": "Pincode model",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/Pincode",
"description": "API reference for the Pincode schema"
},
"properties": {
"pincode": {
"type": "string"
},
"city": {
"type": "string"
},
"state_name": {
"type": "string"
},
"country_name": {
"type": "string"
},
"country_iso_code": {
"type": "string"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions