/** * 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. */ /** * * @export * @interface CreateCustomerRequest */ export interface CreateCustomerRequest { /** * * @type {string} * @memberof CreateCustomerRequest */ name: string; /** * * @type {string} * @memberof CreateCustomerRequest */ address?: string | null; /** * * @type {string} * @memberof CreateCustomerRequest */ address_2?: string | null; /** * * @type {string} * @memberof CreateCustomerRequest */ post_code?: string | null; /** * * @type {string} * @memberof CreateCustomerRequest */ city?: string | null; /** * * @type {string} * @memberof CreateCustomerRequest */ state?: string | null; /** * * @type {string} * @memberof CreateCustomerRequest */ country?: string | null; /** * * @type {string} * @memberof CreateCustomerRequest */ tax_number?: string | null; /** * Free input JSON object property. Can contain maximum 50 properties with string content that is not longer than 250 characters. * @type {{ [key: string]: string; }} * @memberof CreateCustomerRequest */ metadata?: { [key: string]: string; } | null; } /** * Check if a given object implements the CreateCustomerRequest interface. */ export declare function instanceOfCreateCustomerRequest(value: object): value is CreateCustomerRequest; export declare function CreateCustomerRequestFromJSON(json: any): CreateCustomerRequest; export declare function CreateCustomerRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCustomerRequest; export declare function CreateCustomerRequestToJSON(value?: CreateCustomerRequest | null): any; //# sourceMappingURL=CreateCustomerRequest.d.ts.map