/** * 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. */ /** * Per-job switch for outbound candidate feedback. Absent = enabled. enabled=false makes feedback:resolve return enabled=false with reason disabled:job for candidates of this job, before the job override / tenant default lookup. The tenant-level switch (tenant.settings.feedback.enabled) wins over this one. Explicitly validated: enabled must be a JSON boolean. * @export * @interface JobAttributesSettingsFeedbackSchema */ export interface JobAttributesSettingsFeedbackSchema { /** * * @type {boolean} * @memberof JobAttributesSettingsFeedbackSchema */ enabled?: boolean; } /** * Check if a given object implements the JobAttributesSettingsFeedbackSchema interface. */ export declare function instanceOfJobAttributesSettingsFeedbackSchema(value: object): value is JobAttributesSettingsFeedbackSchema; export declare function JobAttributesSettingsFeedbackSchemaFromJSON(json: any): JobAttributesSettingsFeedbackSchema; export declare function JobAttributesSettingsFeedbackSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobAttributesSettingsFeedbackSchema; export declare function JobAttributesSettingsFeedbackSchemaToJSON(json: any): JobAttributesSettingsFeedbackSchema; export declare function JobAttributesSettingsFeedbackSchemaToJSONTyped(value?: JobAttributesSettingsFeedbackSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobAttributesSettingsFeedbackSchema.d.ts.map