Alokai

InvoiceItemInterface

Contains detailes about invoiced items.

type InvoiceItemInterface = {
  discounts?: Maybe<Array<Maybe<Discount>>>; /** The unique ID for an `InvoiceItemInterface` object. */
  id: Scalars['ID']['output']; /** Details about an individual order item. */
  order_item?: Maybe<OrderItemInterface>; /** The name of the base product. */
  product_name?: Maybe<Scalars['String']['output']>; /** The sale price for the base product including selected options. */
  product_sale_price: Money; /** The SKU of the base product. */
  product_sku: Scalars['String']['output']; /** The number of invoiced items. */
  quantity_invoiced?: Maybe<Scalars['Float']['output']>;
};

Referenced Types

On this page