CustomerReadyForReview
Type: schema
Description
List of products and orders for which customer can write review.
TypeScript Definition
typescript
CustomerReadyForReview: {{
product_id?: string;
readonly product_name?: string;
readonly product_image_url?: string;
/** Format: double */
readonly selling_price?: number;
/** Format: double */
readonly listing_price?: number;
readonly order_number?: string;
};
/**
* CustomerReview
* @description List of reviews posted by the user.
*/
}OpenAPI Schema
json
{
"title": "CustomerReadyForReview",
"description": "List of products and orders for which customer can write review.",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/CustomerReadyForReview",
"description": "API reference for the CustomerReadyForReview schema"
},
"properties": {
"product_id": {
"type": "string"
},
"product_name": {
"type": "string",
"readOnly": true
},
"product_image_url": {
"type": "string",
"readOnly": true
},
"selling_price": {
"type": "number",
"format": "double",
"readOnly": true
},
"listing_price": {
"type": "number",
"format": "double",
"readOnly": true
},
"order_number": {
"type": "string",
"readOnly": true
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions