/** * 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 Contact */ export interface Contact { /** * * @type {string} * @memberof Contact */ email?: string; } /** * Check if a given object implements the Contact interface. */ export declare function instanceOfContact(value: object): boolean; export declare function ContactFromJSON(json: any): Contact; export declare function ContactFromJSONTyped(json: any, ignoreDiscriminator: boolean): Contact; export declare function ContactToJSON(value?: Contact | null): any;