BigCommerce · Schema

Gift Wrapping

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
amount number Gift-wrapping price per product.
message string
name string Name of the gift-wrapping option.
View JSON Schema on GitHub

JSON Schema

bigcommerce-responsecartlineitemsphysicalitemgiftwrapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/responseCartLineItemsPhysicalItemGiftWrapping",
  "title": "Gift Wrapping",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "description": "Gift-wrapping price per product.",
      "format": "float"
    },
    "message": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "description": "Name of the gift-wrapping option."
    }
  },
  "nullable": true,
  "x-internal": false
}