/** * 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 { FeedbackOutcomeRuleSchema } from './FeedbackOutcomeRuleSchema'; /** * Per-outcome feedback rules. Outcome keys map to candidate.recommendationStatusCode: 1=notFit, 2=maybe, 3=fit. Code 0 (not evaluated) never triggers feedback - the workflow pauses instead. * @export * @interface FeedbackOutcomesSchema */ export interface FeedbackOutcomesSchema { /** * * @type {FeedbackOutcomeRuleSchema} * @memberof FeedbackOutcomesSchema */ notFit?: FeedbackOutcomeRuleSchema; /** * * @type {FeedbackOutcomeRuleSchema} * @memberof FeedbackOutcomesSchema */ maybe?: FeedbackOutcomeRuleSchema; /** * * @type {FeedbackOutcomeRuleSchema} * @memberof FeedbackOutcomesSchema */ fit?: FeedbackOutcomeRuleSchema; } /** * Check if a given object implements the FeedbackOutcomesSchema interface. */ export declare function instanceOfFeedbackOutcomesSchema(value: object): value is FeedbackOutcomesSchema; export declare function FeedbackOutcomesSchemaFromJSON(json: any): FeedbackOutcomesSchema; export declare function FeedbackOutcomesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeedbackOutcomesSchema; export declare function FeedbackOutcomesSchemaToJSON(json: any): FeedbackOutcomesSchema; export declare function FeedbackOutcomesSchemaToJSONTyped(value?: FeedbackOutcomesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FeedbackOutcomesSchema.d.ts.map