@akamai/openapi-ts
    Preparing search index...

    Type Alias Invoice

    Account Invoice object.

    type Invoice = {
        billing_source?: "akamai" | "linode";
        date?: string;
        id?: number;
        label?: string;
        subtotal?: number;
        tax?: number;
        tax_summary?: { name?: string; tax?: number }[];
        total?: number;
    }
    Index

    Properties

    billing_source?: "akamai" | "linode"

    Filterable, Read-only The source of service charges for this invoice. A value of akamai indicates an invoice generated according to the terms of an agreement between the customer and Akamai. A value of linode indicates an invoice was generated according to the default terms, prices, and discounts.

    date?: string

    Filterable, Read-only When this Invoice was generated.

    id?: number

    Read-only The Invoice's unique ID.

    label?: string

    Filterable, Read-only The Invoice's display label.

    subtotal?: number

    Read-only The amount of the Invoice before taxes in US Dollars.

    tax?: number

    Read-only The amount of tax levied on the Invoice in US Dollars.

    tax_summary?: { name?: string; tax?: number }[]

    Read-only The amount of tax broken down into subtotals by source.

    Type Declaration

    • Optionalname?: string

      The source of this tax subtotal.

    • Optionaltax?: number

      The amount of tax subtotal attributable to this source.

    total?: number

    Filterable, Read-only The amount of the Invoice after taxes in US Dollars.