Skip to content

InvoiceItem

Type: schema

Description

InvoiceItem model

TypeScript Definition

typescript
InvoiceItem: {{
            sku?: string;
            product_name?: string;
            product_image_url?: string;
            listing_price?: number;
            selling_price?: number;
            qty?: number;
            free_qty?: number;
            tax_type?: string;
            tax_rate?: number;
            hsncode?: string;
            batch_number?: string;
            expiry?: string;
            amount?: number;
        };
        /** ItemWiseInventory */
}

OpenAPI Schema

json
{
  "description": "InvoiceItem model",
  "type": "object",
  "properties": {
    "sku": {
      "type": "string"
    },
    "product_name": {
      "type": "string"
    },
    "product_image_url": {
      "type": "string"
    },
    "listing_price": {
      "type": "number"
    },
    "selling_price": {
      "type": "number"
    },
    "qty": {
      "type": "integer"
    },
    "free_qty": {
      "type": "integer"
    },
    "tax_type": {
      "type": "string"
    },
    "tax_rate": {
      "type": "number"
    },
    "hsncode": {
      "type": "string"
    },
    "batch_number": {
      "type": "string"
    },
    "expiry": {
      "type": "string"
    },
    "amount": {
      "type": "number"
    }
  },
  "title": "InvoiceItem",
  "x-tags": [
    "Shipping"
  ]
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: