/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.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 { EmailRelationshipsCandidateDataSchema } from './EmailRelationshipsCandidateDataSchema'; /** * * @export * @interface EmailRelationshipsCandidateSchema */ export interface EmailRelationshipsCandidateSchema { /** * * @type {EmailRelationshipsCandidateDataSchema} * @memberof EmailRelationshipsCandidateSchema */ data?: EmailRelationshipsCandidateDataSchema | null; } /** * Check if a given object implements the EmailRelationshipsCandidateSchema interface. */ export declare function instanceOfEmailRelationshipsCandidateSchema(value: object): value is EmailRelationshipsCandidateSchema; export declare function EmailRelationshipsCandidateSchemaFromJSON(json: any): EmailRelationshipsCandidateSchema; export declare function EmailRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailRelationshipsCandidateSchema; export declare function EmailRelationshipsCandidateSchemaToJSON(json: any): EmailRelationshipsCandidateSchema; export declare function EmailRelationshipsCandidateSchemaToJSONTyped(value?: EmailRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EmailRelationshipsCandidateSchema.d.ts.map