/** * Billingual API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * * The version of the OpenAPI document: 1.0.0 * Contact: api@billingual.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Customer of the document. * @export * @interface InvoiceCustomer */ export interface InvoiceCustomer { /** * * @type {string} * @memberof InvoiceCustomer */ name?: string | null; /** * * @type {string} * @memberof InvoiceCustomer */ address?: string | null; /** * * @type {string} * @memberof InvoiceCustomer */ address_2?: string | null; /** * * @type {string} * @memberof InvoiceCustomer */ post_code?: string | null; /** * * @type {string} * @memberof InvoiceCustomer */ city?: string | null; /** * * @type {string} * @memberof InvoiceCustomer */ state?: string | null; /** * * @type {string} * @memberof InvoiceCustomer */ country?: string | null; /** * * @type {string} * @memberof InvoiceCustomer */ tax_number?: string | null; } /** * Check if a given object implements the InvoiceCustomer interface. */ export declare function instanceOfInvoiceCustomer(value: object): value is InvoiceCustomer; export declare function InvoiceCustomerFromJSON(json: any): InvoiceCustomer; export declare function InvoiceCustomerFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceCustomer; export declare function InvoiceCustomerToJSON(value?: InvoiceCustomer | null): any; //# sourceMappingURL=InvoiceCustomer.d.ts.map