/** * 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 InvoiceIssuer */ export interface InvoiceIssuer { /** * * @type {string} * @memberof InvoiceIssuer */ name?: string | null; /** * * @type {string} * @memberof InvoiceIssuer */ address?: string | null; /** * * @type {string} * @memberof InvoiceIssuer */ address_2?: string | null; /** * * @type {string} * @memberof InvoiceIssuer */ post_code?: string | null; /** * * @type {string} * @memberof InvoiceIssuer */ city?: string | null; /** * * @type {string} * @memberof InvoiceIssuer */ state?: string | null; /** * * @type {string} * @memberof InvoiceIssuer */ country?: string | null; /** * * @type {string} * @memberof InvoiceIssuer */ tax_number?: string | null; } /** * Check if a given object implements the InvoiceIssuer interface. */ export declare function instanceOfInvoiceIssuer(value: object): value is InvoiceIssuer; export declare function InvoiceIssuerFromJSON(json: any): InvoiceIssuer; export declare function InvoiceIssuerFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceIssuer; export declare function InvoiceIssuerToJSON(value?: InvoiceIssuer | null): any; //# sourceMappingURL=InvoiceIssuer.d.ts.map