/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; export interface InvoiceDownloadReq { /** * Collecting Company Code of the selected payer. * Mandatory */ colCoCode: number | null; /** * Payer Number of the selected payer. * Mandatory * Example: GB000000123 */ payerNumber: string | null; /** * List of Account Numbers of the invoices. * Mandatory for customer users else optional. */ accountNumber?: string[]; /** * Unique reference ids of invoice document (of zip file). * Optional if InvoiceOrSOANumber is passed else Mandatory. */ documentReference?: number[]; /** Invoice or the SOA document reference number issued by Card s Platform. */ invoiceOrSOANumber?: string | null; } export declare const invoiceDownloadReqSchema: Schema; //# sourceMappingURL=invoiceDownloadReq.d.ts.map