Success.

GetInvoicesResponse

interface GetInvoicesResponse {
    invoices?: Invoice[];
    nextToken?: string;
}

Properties

invoices?: Invoice[]

A list of invoices.

GetInvoicesResponse

nextToken?: string

This token is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getInvoices operation and include this token with the previous call parameters.

GetInvoicesResponse