/** * 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 { JobAttributesSettingsConversationSchema } from './JobAttributesSettingsConversationSchema'; import type { JobAttributesSettingsCriteriasSchema } from './JobAttributesSettingsCriteriasSchema'; import type { JobAttributesSettingsPersonaSchema } from './JobAttributesSettingsPersonaSchema'; import type { JobAttributesSettingsFeedbackSchema } from './JobAttributesSettingsFeedbackSchema'; import type { JobAttributesSettingsOperationSchema } from './JobAttributesSettingsOperationSchema'; /** * * @export * @interface JobAttributesSettingsSchema */ export interface JobAttributesSettingsSchema { /** * * @type {JobAttributesSettingsConversationSchema} * @memberof JobAttributesSettingsSchema */ conversation?: JobAttributesSettingsConversationSchema; /** * * @type {JobAttributesSettingsCriteriasSchema} * @memberof JobAttributesSettingsSchema */ criterias?: JobAttributesSettingsCriteriasSchema; /** * * @type {JobAttributesSettingsOperationSchema} * @memberof JobAttributesSettingsSchema */ operation?: JobAttributesSettingsOperationSchema; /** * * @type {JobAttributesSettingsPersonaSchema} * @memberof JobAttributesSettingsSchema */ persona?: JobAttributesSettingsPersonaSchema; /** * Rating restrictiveness level (e.g. MODERATE, STRICT, LENIENT) * @type {string} * @memberof JobAttributesSettingsSchema */ ratingRestrictiveness?: string; /** * * @type {JobAttributesSettingsFeedbackSchema} * @memberof JobAttributesSettingsSchema */ feedback?: JobAttributesSettingsFeedbackSchema; } /** * Check if a given object implements the JobAttributesSettingsSchema interface. */ export declare function instanceOfJobAttributesSettingsSchema(value: object): value is JobAttributesSettingsSchema; export declare function JobAttributesSettingsSchemaFromJSON(json: any): JobAttributesSettingsSchema; export declare function JobAttributesSettingsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobAttributesSettingsSchema; export declare function JobAttributesSettingsSchemaToJSON(json: any): JobAttributesSettingsSchema; export declare function JobAttributesSettingsSchemaToJSONTyped(value?: JobAttributesSettingsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobAttributesSettingsSchema.d.ts.map