ProductShipping
Type: schema
TypeScript Definition
typescript
ProductShipping: {{
handling_charges_including_tax: number;
handling_charges_excluding_tax: number;
tax_type: string;
tax_rate: number;
} | null;
/** ProductSubscription */
}OpenAPI Schema
json
{
"title": "ProductShipping",
"type": [
"object",
"null"
],
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/ProductShipping",
"description": "API reference for the ProductShipping schema"
},
"required": [
"handling_charges_including_tax",
"handling_charges_excluding_tax",
"tax_type",
"tax_rate"
],
"properties": {
"handling_charges_including_tax": {
"type": "number"
},
"handling_charges_excluding_tax": {
"type": "number"
},
"tax_type": {
"type": "string"
},
"tax_rate": {
"type": "number"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions