/** * 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 TalentAttributesDesiredRoleSchema */ export interface TalentAttributesDesiredRoleSchema { /** * * @type {string} * @memberof TalentAttributesDesiredRoleSchema */ role?: string; /** * * @type {string} * @memberof TalentAttributesDesiredRoleSchema */ level?: string; /** * * @type {boolean} * @memberof TalentAttributesDesiredRoleSchema */ isAssumed?: boolean; /** * * @type {TalentAttributesDesiredRoleSchemaConfidenceEnum} * @memberof TalentAttributesDesiredRoleSchema */ confidence?: TalentAttributesDesiredRoleSchemaConfidenceEnum; /** * * @type {string} * @memberof TalentAttributesDesiredRoleSchema */ reasoning?: string; } /** * @export */ export declare const TalentAttributesDesiredRoleSchemaConfidenceEnum: { readonly Low: "Low"; readonly Medium: "Medium"; readonly High: "High"; }; export type TalentAttributesDesiredRoleSchemaConfidenceEnum = typeof TalentAttributesDesiredRoleSchemaConfidenceEnum[keyof typeof TalentAttributesDesiredRoleSchemaConfidenceEnum]; /** * Check if a given object implements the TalentAttributesDesiredRoleSchema interface. */ export declare function instanceOfTalentAttributesDesiredRoleSchema(value: object): value is TalentAttributesDesiredRoleSchema; export declare function TalentAttributesDesiredRoleSchemaFromJSON(json: any): TalentAttributesDesiredRoleSchema; export declare function TalentAttributesDesiredRoleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentAttributesDesiredRoleSchema; export declare function TalentAttributesDesiredRoleSchemaToJSON(json: any): TalentAttributesDesiredRoleSchema; export declare function TalentAttributesDesiredRoleSchemaToJSONTyped(value?: TalentAttributesDesiredRoleSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentAttributesDesiredRoleSchema.d.ts.map