Skip to content

InvoiceDetail

Type: schema

Description

InvoiceDetail model

TypeScript Definition

typescript
InvoiceDetail: {components["schemas"]["Invoice"] & {
            items?: components["schemas"]["InvoiceItem"][]
}

Component References

ReferenceResolves To
components["schemas"]["Invoice"]Invoice
components["schemas"]["InvoiceItem"]InvoiceItem

OpenAPI Schema

json
{
  "description": "InvoiceDetail model",
  "allOf": [
    {
      "$ref": "#/components/schemas/Invoice"
    },
    {
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/InvoiceItem"
          }
        }
      }
    }
  ],
  "title": "InvoiceDetail",
  "x-tags": [
    "Shipping"
  ]
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: