/** * 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 TalentAttributesEmploymentTypeSchema */ export interface TalentAttributesEmploymentTypeSchema { /** * * @type {string} * @memberof TalentAttributesEmploymentTypeSchema */ status?: string; /** * * @type {boolean} * @memberof TalentAttributesEmploymentTypeSchema */ isAssumed?: boolean; /** * * @type {TalentAttributesEmploymentTypeSchemaConfidenceEnum} * @memberof TalentAttributesEmploymentTypeSchema */ confidence?: TalentAttributesEmploymentTypeSchemaConfidenceEnum; /** * * @type {string} * @memberof TalentAttributesEmploymentTypeSchema */ additionalContext?: string | null; /** * * @type {string} * @memberof TalentAttributesEmploymentTypeSchema */ reasoning?: string | null; } /** * @export */ export declare const TalentAttributesEmploymentTypeSchemaConfidenceEnum: { readonly Low: "Low"; readonly Medium: "Medium"; readonly High: "High"; }; export type TalentAttributesEmploymentTypeSchemaConfidenceEnum = typeof TalentAttributesEmploymentTypeSchemaConfidenceEnum[keyof typeof TalentAttributesEmploymentTypeSchemaConfidenceEnum]; /** * Check if a given object implements the TalentAttributesEmploymentTypeSchema interface. */ export declare function instanceOfTalentAttributesEmploymentTypeSchema(value: object): value is TalentAttributesEmploymentTypeSchema; export declare function TalentAttributesEmploymentTypeSchemaFromJSON(json: any): TalentAttributesEmploymentTypeSchema; export declare function TalentAttributesEmploymentTypeSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentAttributesEmploymentTypeSchema; export declare function TalentAttributesEmploymentTypeSchemaToJSON(json: any): TalentAttributesEmploymentTypeSchema; export declare function TalentAttributesEmploymentTypeSchemaToJSONTyped(value?: TalentAttributesEmploymentTypeSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentAttributesEmploymentTypeSchema.d.ts.map