/** * 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 Entity * @export * @interface Customer */ export interface Customer { /** * * @type {string} * @memberof Customer */ id: string; /** * * @type {string} * @memberof Customer */ name: string; /** * * @type {string} * @memberof Customer */ address: string | null; /** * * @type {string} * @memberof Customer */ address_2: string | null; /** * * @type {string} * @memberof Customer */ post_code: string | null; /** * * @type {string} * @memberof Customer */ city: string | null; /** * * @type {string} * @memberof Customer */ state: string | null; /** * * @type {string} * @memberof Customer */ country: string | null; /** * * @type {string} * @memberof Customer */ tax_number: string | null; /** * * @type {string} * @memberof Customer */ entity_id: string; /** * * @type {{ [key: string]: string; }} * @memberof Customer */ metadata: { [key: string]: string; }; /** * * @type {Date} * @memberof Customer */ created_at: Date; /** * * @type {Date} * @memberof Customer */ updated_at: Date; } /** * Check if a given object implements the Customer interface. */ export declare function instanceOfCustomer(value: object): value is Customer; export declare function CustomerFromJSON(json: any): Customer; export declare function CustomerFromJSONTyped(json: any, ignoreDiscriminator: boolean): Customer; export declare function CustomerToJSON(value?: Customer | null): any; //# sourceMappingURL=Customer.d.ts.map