/** * Leka API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 { CreateEntityRequestMetadataValue } from './CreateEntityRequestMetadataValue'; /** * * @export * @interface DocumentEntity */ export interface DocumentEntity { /** * * @type {string} * @memberof DocumentEntity */ name: string; /** * * @type {string} * @memberof DocumentEntity */ address?: string | null; /** * * @type {string} * @memberof DocumentEntity */ address_2?: string | null; /** * * @type {string} * @memberof DocumentEntity */ post_code?: string | null; /** * * @type {string} * @memberof DocumentEntity */ city?: string | null; /** * * @type {string} * @memberof DocumentEntity */ state?: string | null; /** * * @type {string} * @memberof DocumentEntity */ country?: string | null; /** * * @type {string} * @memberof DocumentEntity */ tax_number?: string | null; /** * Free input JSON object property. Can contain maximum 50 properties with string content that is not longer than 250 characters or numbers that are not longer than 15 digits. * @type {{ [key: string]: CreateEntityRequestMetadataValue; }} * @memberof DocumentEntity */ metadata?: { [key: string]: CreateEntityRequestMetadataValue; } | null; } /** * Check if a given object implements the DocumentEntity interface. */ export declare function instanceOfDocumentEntity(value: object): value is DocumentEntity; export declare function DocumentEntityFromJSON(json: any): DocumentEntity; export declare function DocumentEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentEntity; export declare function DocumentEntityToJSON(value?: DocumentEntity | null): any; //# sourceMappingURL=DocumentEntity.d.ts.map