/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; export interface EIDDocument { /** Technical identifier for the EID file. Should not be stored in database as it is not guaranteed to stay unchanged over time. */ documentId?: number | null; /** Account Group Id */ accountGroupId?: string | null; /** Account group name */ accountGroupName?: string | null; /** * Document type. * Possible values: * • NAT (National) * • INT (International) */ documentType?: string | null; /** Document format (CHORUS, DIFI etc.) */ documentFormat?: string | null; /** * Document date. * Example: 20170101 */ documentDate?: string | null; /** Number of invoices */ numberOfInvoices?: number | null; /** Document size */ fileSize?: number | null; /** Document file name. */ documentName?: string | null; } export declare const eIDDocumentSchema: Schema; //# sourceMappingURL=eIDDocument.d.ts.map