/** * 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. */ import type { CreateEntityRequestSettings } from './CreateEntityRequestSettings'; /** * * @export * @interface PatchEntityRequest */ export interface PatchEntityRequest { /** * * @type {string} * @memberof PatchEntityRequest */ name?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ address?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ address_2?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ post_code?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ city?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ state?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ country?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ tax_number?: string | null; /** * * @type {string} * @memberof PatchEntityRequest */ environment?: string | null; /** * * @type {CreateEntityRequestSettings} * @memberof PatchEntityRequest */ settings?: CreateEntityRequestSettings | 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 PatchEntityRequest */ metadata?: { [key: string]: string; } | null; } /** * Check if a given object implements the PatchEntityRequest interface. */ export declare function instanceOfPatchEntityRequest(value: object): value is PatchEntityRequest; export declare function PatchEntityRequestFromJSON(json: any): PatchEntityRequest; export declare function PatchEntityRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchEntityRequest; export declare function PatchEntityRequestToJSON(value?: PatchEntityRequest | null): any; //# sourceMappingURL=PatchEntityRequest.d.ts.map