/** * 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. */ /** * * @export * @interface TalentAttributesDesiredEmploymentTypeSchema */ export interface TalentAttributesDesiredEmploymentTypeSchema { /** * * @type {string} * @memberof TalentAttributesDesiredEmploymentTypeSchema */ type?: string; /** * * @type {boolean} * @memberof TalentAttributesDesiredEmploymentTypeSchema */ isAssumed?: boolean; /** * * @type {TalentAttributesDesiredEmploymentTypeSchemaConfidenceEnum} * @memberof TalentAttributesDesiredEmploymentTypeSchema */ confidence?: TalentAttributesDesiredEmploymentTypeSchemaConfidenceEnum; /** * * @type {string} * @memberof TalentAttributesDesiredEmploymentTypeSchema */ reasoning?: string; } /** * @export */ export declare const TalentAttributesDesiredEmploymentTypeSchemaConfidenceEnum: { readonly Low: "Low"; readonly Medium: "Medium"; readonly High: "High"; }; export type TalentAttributesDesiredEmploymentTypeSchemaConfidenceEnum = typeof TalentAttributesDesiredEmploymentTypeSchemaConfidenceEnum[keyof typeof TalentAttributesDesiredEmploymentTypeSchemaConfidenceEnum]; /** * Check if a given object implements the TalentAttributesDesiredEmploymentTypeSchema interface. */ export declare function instanceOfTalentAttributesDesiredEmploymentTypeSchema(value: object): value is TalentAttributesDesiredEmploymentTypeSchema; export declare function TalentAttributesDesiredEmploymentTypeSchemaFromJSON(json: any): TalentAttributesDesiredEmploymentTypeSchema; export declare function TalentAttributesDesiredEmploymentTypeSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentAttributesDesiredEmploymentTypeSchema; export declare function TalentAttributesDesiredEmploymentTypeSchemaToJSON(json: any): TalentAttributesDesiredEmploymentTypeSchema; export declare function TalentAttributesDesiredEmploymentTypeSchemaToJSONTyped(value?: TalentAttributesDesiredEmploymentTypeSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentAttributesDesiredEmploymentTypeSchema.d.ts.map