/** * 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 { JobAttributesSettingsConversationCandidateInterviewSchema } from './JobAttributesSettingsConversationCandidateInterviewSchema'; import type { JobAttributesSettingsConversationEmailSchema } from './JobAttributesSettingsConversationEmailSchema'; import type { JobAttributesSettingsConversationPersonaInterviewSchema } from './JobAttributesSettingsConversationPersonaInterviewSchema'; /** * * @export * @interface JobAttributesSettingsConversationSchema */ export interface JobAttributesSettingsConversationSchema { /** * * @type {JobAttributesSettingsConversationEmailSchema} * @memberof JobAttributesSettingsConversationSchema */ email?: JobAttributesSettingsConversationEmailSchema; /** * * @type {JobAttributesSettingsConversationCandidateInterviewSchema} * @memberof JobAttributesSettingsConversationSchema */ candidateInterview?: JobAttributesSettingsConversationCandidateInterviewSchema; /** * * @type {JobAttributesSettingsConversationPersonaInterviewSchema} * @memberof JobAttributesSettingsConversationSchema */ personaInterview?: JobAttributesSettingsConversationPersonaInterviewSchema; /** * Conversation tone (e.g. FORMAL, INFORMAL) * @type {string} * @memberof JobAttributesSettingsConversationSchema */ tone?: string; } /** * Check if a given object implements the JobAttributesSettingsConversationSchema interface. */ export declare function instanceOfJobAttributesSettingsConversationSchema(value: object): value is JobAttributesSettingsConversationSchema; export declare function JobAttributesSettingsConversationSchemaFromJSON(json: any): JobAttributesSettingsConversationSchema; export declare function JobAttributesSettingsConversationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobAttributesSettingsConversationSchema; export declare function JobAttributesSettingsConversationSchemaToJSON(json: any): JobAttributesSettingsConversationSchema; export declare function JobAttributesSettingsConversationSchemaToJSONTyped(value?: JobAttributesSettingsConversationSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobAttributesSettingsConversationSchema.d.ts.map