Invoice Item Template

Description

An invoice item template.

Properties

Property Description
created read-only

The date on which the entity was created.

description

A description for this invoice item template.

id

The identifier for this invoice item template.

isTaxable

Whether this invoice item template is taxable.

itemPrice

The price for a single one of this invoice item template.

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

name

The name of this invoice item template.

quantity

The default quantity for this invoice item template.

totalPrice

The invoice item template price multiplied by the quantity.

type

The type of object represented.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "An invoice item template.",
  "properties": {
    "created": {
      "$ref": "#/components/schemas/Signature/properties/created"
    },
    "description": {
      "description": "A description for this invoice item template.",
      "type": "string"
    },
    "id": {
      "description": "The identifier for this invoice item template.",
      "type": "integer"
    },
    "isTaxable": {
      "description": "Whether this invoice item template is taxable.",
      "type": "boolean"
    },
    "itemPrice": {
      "description": "The price for a single one of this invoice item template.",
      "type": "number"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "name": {
      "description": "The name of this invoice item template.",
      "type": "string"
    },
    "quantity": {
      "description": "The default quantity for this invoice item template.",
      "type": "integer"
    },
    "totalPrice": {
      "description": "The invoice item template price multiplied by the quantity.",
      "type": "number"
    },
    "type": {
      "description": "The type of object represented.",
      "enum": [
        "invoice-item-template"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "name",
    "itemPrice",
    "quantity",
    "totalPrice",
    "isTaxable"
  ],
  "title": "Invoice Item Template",
  "type": "object"
}