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

22 lines 1.02 kB
/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; /** Invoice document reference number for the additional invoice files such as KSeF file (Poland). This field is optional, and it will be missing if additional documents are not applicable. Also, it will not be populated if the invoice date is older than 13 months. */ export interface InvoiceSearchAdditionalDocument { /** Unique ID for the additional invoice document. */ reference?: string | null; /** * Type of the additional document. * Mandatory * Possible values: * • KSeF - Applicable for Poland market. */ type?: string | null; /** True if a KSeF PDF will be produced for the customer. */ isApplicable?: string | null; } export declare const invoiceSearchAdditionalDocumentSchema: Schema<InvoiceSearchAdditionalDocument>; //# sourceMappingURL=invoiceSearchAdditionalDocument.d.ts.map