/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * 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 Address */ export interface Address { /** * Client number and street * @type {string} * @memberof Address */ street?: string; /** * Client Postcode/ZIP * @type {string} * @memberof Address */ postCode?: string; /** * Client city * @type {string} * @memberof Address */ city?: string; /** * Client country using ISO 3166-1 alpha-3 * @type {string} * @memberof Address */ country: string; } /** * Check if a given object implements the Address interface. */ export declare function instanceOfAddress(value: object): boolean; export declare function AddressFromJSON(json: any): Address; export declare function AddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): Address; export declare function AddressToJSON(value?: Address | null): any;