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

    Type Alias GetInvoiceItemsResponses

    type GetInvoiceItemsResponses = {
        "200": {
            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

    Properties

    "200": {
        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;
    }

    A paginated list of InvoiceItem objects.

    Type Declaration

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

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.