LotBatchDetail
Type: schema
TypeScript Definition
typescript
LotBatchDetail: {{
lot_batch: string;
/** Format: date */
mfg_date: string | null;
/** Format: date */
exp_date: string | null;
manufacturer: string | null;
stock_quantity: number;
};
/**
* LoyaltyPointActivity
* @description Loyalty Point Activity
*/
}OpenAPI Schema
json
{
"title": "LotBatchDetail",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/LotBatchDetail",
"description": "API reference for the LotBatchDetail schema"
},
"required": [
"lot_batch",
"mfg_date",
"exp_date",
"manufacturer",
"stock_quantity"
],
"properties": {
"lot_batch": {
"type": "string"
},
"mfg_date": {
"type": [
"string",
"null"
],
"format": "date"
},
"exp_date": {
"type": [
"string",
"null"
],
"format": "date"
},
"manufacturer": {
"type": [
"string",
"null"
]
},
"stock_quantity": {
"type": "integer"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions