Skip to content

UnserviceableItem

Type: schema

Description

Unserviceable item model

TypeScript Definition

typescript
UnserviceableItem: {{
            product_id?: string;
            product_name?: string;
            product_image_url?: string | null;
            variant_id?: string;
            variant_name?: string;
            unserviceable_quantity?: number;
            max_available_quantity?: number;
        };
        /**
         * UpdateCartItem
         * @description Schema for updating a cart item, including adding, removing, or adjusting the quantity of a product or variant.
         */
}

OpenAPI Schema

json
{
  "title": "UnserviceableItem",
  "description": "Unserviceable item model",
  "type": "object",
  "externalDocs": {
    "url": "https://llm-docs.commercengine.io/storefront/schemas/UnserviceableItem",
    "description": "API reference for the UnserviceableItem schema"
  },
  "properties": {
    "product_id": {
      "type": "string"
    },
    "product_name": {
      "type": "string"
    },
    "product_image_url": {
      "type": [
        "string",
        "null"
      ]
    },
    "variant_id": {
      "type": "string"
    },
    "variant_name": {
      "type": "string"
    },
    "unserviceable_quantity": {
      "type": "integer"
    },
    "max_available_quantity": {
      "type": "integer"
    }
  }
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: