/** * 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 { ScheduleRelationshipsEmailSchema } from './ScheduleRelationshipsEmailSchema'; import type { ScheduleRelationshipsTalentSchema } from './ScheduleRelationshipsTalentSchema'; import type { ScheduleRelationshipsUserSchema } from './ScheduleRelationshipsUserSchema'; import type { ScheduleRelationshipsJobSchema } from './ScheduleRelationshipsJobSchema'; import type { ScheduleRelationshipsConversationSchema } from './ScheduleRelationshipsConversationSchema'; import type { ScheduleRelationshipsCandidateSchema } from './ScheduleRelationshipsCandidateSchema'; /** * Optional audit links. None required; use the ones relevant to the scheduled action. * @export * @interface ScheduleRelationshipsSchema */ export interface ScheduleRelationshipsSchema { /** * * @type {ScheduleRelationshipsCandidateSchema} * @memberof ScheduleRelationshipsSchema */ candidate?: ScheduleRelationshipsCandidateSchema; /** * * @type {ScheduleRelationshipsJobSchema} * @memberof ScheduleRelationshipsSchema */ job?: ScheduleRelationshipsJobSchema; /** * * @type {ScheduleRelationshipsConversationSchema} * @memberof ScheduleRelationshipsSchema */ conversation?: ScheduleRelationshipsConversationSchema; /** * * @type {ScheduleRelationshipsTalentSchema} * @memberof ScheduleRelationshipsSchema */ talent?: ScheduleRelationshipsTalentSchema; /** * * @type {ScheduleRelationshipsUserSchema} * @memberof ScheduleRelationshipsSchema */ user?: ScheduleRelationshipsUserSchema; /** * * @type {ScheduleRelationshipsEmailSchema} * @memberof ScheduleRelationshipsSchema */ email?: ScheduleRelationshipsEmailSchema; } /** * Check if a given object implements the ScheduleRelationshipsSchema interface. */ export declare function instanceOfScheduleRelationshipsSchema(value: object): value is ScheduleRelationshipsSchema; export declare function ScheduleRelationshipsSchemaFromJSON(json: any): ScheduleRelationshipsSchema; export declare function ScheduleRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleRelationshipsSchema; export declare function ScheduleRelationshipsSchemaToJSON(json: any): ScheduleRelationshipsSchema; export declare function ScheduleRelationshipsSchemaToJSONTyped(value?: ScheduleRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ScheduleRelationshipsSchema.d.ts.map