CollectInStoreAddress
Type: schema
TypeScript Definition
typescript
CollectInStoreAddress: {{
name: string;
address_line1: string;
address_line2?: string | null;
landmark?: string | null;
pincode: string;
city: string;
state: string;
country: string;
/** @default +91 */
country_code: string;
};
/** CollectInStoreFulfillment */
}OpenAPI Schema
json
{
"title": "CollectInStoreAddress",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/CollectInStoreAddress",
"description": "API reference for the CollectInStoreAddress schema"
},
"required": [
"name",
"address_line1",
"pincode",
"city",
"state",
"country",
"country_code"
],
"properties": {
"name": {
"type": "string"
},
"address_line1": {
"type": "string"
},
"address_line2": {
"type": [
"string",
"null"
]
},
"landmark": {
"type": [
"string",
"null"
]
},
"pincode": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"country": {
"type": "string"
},
"country_code": {
"type": "string",
"default": "+91"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions