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

    Type Alias AddedGetInvoiceItems200

    type AddedGetInvoiceItems200 = {
        data?: {
            amount?: number;
            from?: string;
            label?: string;
            quantity?: number;
            region?: string | null;
            tax?: number;
            to?: string;
            total?: number;
            type?: "hourly" | "misc";
            unit_price?: string;
        }[];
        page?: number;
        pages?: number;
        results?: number;
    }
    Index

    Properties

    data?: {
        amount?: number;
        from?: string;
        label?: string;
        quantity?: number;
        region?: string | null;
        tax?: number;
        to?: string;
        total?: number;
        type?: "hourly" | "misc";
        unit_price?: string;
    }[]

    Type Declaration

    • Optional Readonlyamount?: number

      Read-only The price, in US dollars, of the Invoice Item. Equal to the unit price multiplied by quantity.

    • Optional Readonlyfrom?: string

      Read-only The date the Invoice Item started, based on month.

    • Optional Readonlylabel?: string

      Read-only The Invoice Item's display label.

    • Optional Readonlyquantity?: number

      Read-only The quantity of this Item for the specified Invoice.

    • Optional Readonlyregion?: string | null

      Read-only The ID of the applicable Region associated with this Invoice Item.

      null if there is no applicable Region.

    • Optional Readonlytax?: number

      Read-only The amount of tax levied on this Item in US Dollars.

    • Optional Readonlyto?: string

      Read-only The date the Invoice Item ended, based on month.

    • Optional Readonlytotal?: number

      Read-only The price of this Item after taxes in US Dollars.

    • Optionaltype?: "hourly" | "misc"

      Read-only The type of service, ether hourly or misc.

    • Optional Readonlyunit_price?: string

      Read-only The monthly service fee in US Dollars for this Item.

    page?: number

    Read-only The current page.

    pages?: number

    Read-only The total number of pages.

    results?: number

    Read-only The total number of results.