ListInvoicesRequest: {
    invoiceType?: Billing.v2alpha1.InvoiceType;
    orderBy?: Billing.v2alpha1.ListInvoicesRequestOrderBy;
    organizationId?: string;
    page?: number;
    pageSize?: number;
    startedAfter?: Date;
    startedBefore?: Date;
}

Type declaration

  • OptionalinvoiceType?: Billing.v2alpha1.InvoiceType

    Invoice type. It can either be periodic or purchase.

  • OptionalorderBy?: Billing.v2alpha1.ListInvoicesRequestOrderBy

    How invoices are ordered in the response.

  • OptionalorganizationId?: string

    Organization ID to filter for, only invoices from this Organization will be returned.

  • Optionalpage?: number

    Positive integer to choose the page to return.

  • OptionalpageSize?: number

    Positive integer lower or equal to 100 to select the number of items to return.

  • OptionalstartedAfter?: Date

    Invoice's start_date is greater or equal to started_after.

  • OptionalstartedBefore?: Date

    Invoice's start_date precedes started_before.