data-and-reporting-sdk
Version:
Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards. The Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication
28 lines • 1.01 kB
TypeScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { InvoiceSearchRequestFilters } from './invoiceSearchRequestFilters.js';
export interface InvoiceSearchRequest {
filters?: InvoiceSearchRequestFilters;
pageSize?: number;
page?: number;
/**
* Sort option –
* 1. InvoiceDate ASC
* 2. InvoiceDate DESC
* 3. NetAmountCustomerCurrency ASC
* 4. NetAmountCustomerCurrency DESC
* Optional
* Note:
* This option uses a column name with a combination of “ASC or DESC” for sorting.
* If only the column name is provided, it is sorted by ascending.
* Example values to be passed:
* [“InvoiceDate”, “NetAmountCustomerCurrency DESC”]
*/
sortBy?: number[];
}
export declare const invoiceSearchRequestSchema: Schema<InvoiceSearchRequest>;
//# sourceMappingURL=invoiceSearchRequest.d.ts.map