/** * 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 { ConversationRelationshipsCandidateSchema } from './ConversationRelationshipsCandidateSchema'; import type { ConversationRelationshipsTalentSchema } from './ConversationRelationshipsTalentSchema'; import type { ConversationRelationshipsJobSchema } from './ConversationRelationshipsJobSchema'; import type { ConversationRelationshipsEmailsSchema } from './ConversationRelationshipsEmailsSchema'; import type { ConversationRelationshipsChatsSchema } from './ConversationRelationshipsChatsSchema'; import type { ConversationRelationshipsMeetingsSchema } from './ConversationRelationshipsMeetingsSchema'; import type { ConversationRelationshipsCallsSchema } from './ConversationRelationshipsCallsSchema'; /** * * @export * @interface ConversationRelationshipsSchema */ export interface ConversationRelationshipsSchema { /** * * @type {ConversationRelationshipsCandidateSchema} * @memberof ConversationRelationshipsSchema */ candidate?: ConversationRelationshipsCandidateSchema; /** * * @type {ConversationRelationshipsEmailsSchema} * @memberof ConversationRelationshipsSchema */ emails?: ConversationRelationshipsEmailsSchema; /** * * @type {ConversationRelationshipsChatsSchema} * @memberof ConversationRelationshipsSchema */ chats?: ConversationRelationshipsChatsSchema; /** * * @type {ConversationRelationshipsCallsSchema} * @memberof ConversationRelationshipsSchema */ calls?: ConversationRelationshipsCallsSchema; /** * * @type {ConversationRelationshipsMeetingsSchema} * @memberof ConversationRelationshipsSchema */ meetings?: ConversationRelationshipsMeetingsSchema; /** * * @type {ConversationRelationshipsTalentSchema} * @memberof ConversationRelationshipsSchema */ talent?: ConversationRelationshipsTalentSchema; /** * * @type {ConversationRelationshipsJobSchema} * @memberof ConversationRelationshipsSchema */ job?: ConversationRelationshipsJobSchema; } /** * Check if a given object implements the ConversationRelationshipsSchema interface. */ export declare function instanceOfConversationRelationshipsSchema(value: object): value is ConversationRelationshipsSchema; export declare function ConversationRelationshipsSchemaFromJSON(json: any): ConversationRelationshipsSchema; export declare function ConversationRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationRelationshipsSchema; export declare function ConversationRelationshipsSchemaToJSON(json: any): ConversationRelationshipsSchema; export declare function ConversationRelationshipsSchemaToJSONTyped(value?: ConversationRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConversationRelationshipsSchema.d.ts.map