Skip to content

FulfillmentItem

Type: schema

TypeScript Definition

typescript
FulfillmentItem: {{
            product_id: string;
            readonly product_name: string;
            variant_id: string | null;
            readonly variant_name: string | null;
            quantity: number;
        };
        /** FulfillmentPreference */
}

OpenAPI Schema

json
{
  "type": "object",
  "properties": {
    "product_id": {
      "type": "string"
    },
    "product_name": {
      "type": "string",
      "readOnly": true
    },
    "variant_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "variant_name": {
      "type": [
        "string",
        "null"
      ],
      "readOnly": true
    },
    "quantity": {
      "type": "integer"
    }
  },
  "required": [
    "product_id",
    "product_name",
    "variant_id",
    "variant_name",
    "quantity"
  ],
  "title": "FulfillmentItem"
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: