UNPKG

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

68 lines 1.63 kB
/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; export interface EIDSearchReq { /** * Collecting Company Code of the selected payer. * Mandatory */ colCoCode: number | null; /** * Country code (colco code) of the account group. * Mandatory */ accountGroupCountry: number | null; /** * List of IDs of the account groups that user has access to. * Mandatory */ accountGroupId: string[]; /** * Account group name * Optional. * This input is a search criterion, if given. */ accountGroupName?: string | null; /** * EID date searched from this date. * Optional. */ fromDate?: string | null; /** * Invoice date searched until this date. * Optional. */ toDate?: string | null; /** * Invoice type. * Optional. * Possible values: * • NAT (National) * • INT (International) */ invoiceType?: string | null; /** * Status of the document. * Optional. * Possible values: * • NEW * • VIEWED * • DOWNLOADED * • RESTORED */ invoiceStatus?: string | null; /** * Sort option – * • InvoiceNumber ASC * • InvoiceDate ASC * • InvoiceNumber DESC * • InvoiceDate DESC * Optional */ sortBy?: string[]; } export declare const eIDSearchReqSchema: Schema<EIDSearchReq>; //# sourceMappingURL=eIDSearchReq.d.ts.map