Interface IInvoiceParams

The IBaseParams interface provides a structure for query parameters commonly used in API requests to manipulate the presentation and organization of returned data.

Hierarchy

Properties

GrandTotal?: number
PaidAtAfter?: string
PaidAtBefore?: string
PaidAtStartsWith?: string
RefIdContains?: string
StatusContains?: string
format?: string

The desired format of the response (e.g., 'json', 'xml').

include?: string

A way to include data from related tables/entities.

jsconfig?: string

JavaScript configuration for client-side handling of the response.

orderBy?: string

A parameter to specify the field to order the results by in ascending order.

orderByDesc?: string

A parameter to specify the field to order the results by in descending order.

skip?: number

The number of records to skip before starting to collect the response set.

take?: number

The limit on the number of records to return in the response set.

Generated using TypeDoc