/** * 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. */ /** * Single hit from the OpenSearch query. The `id` equals the underlying resource id (emailId, talentId, candidateId, jobId, ...) so the frontend can navigate directly to that resource. Additional fields vary by finder `type`. * @export * @interface FinderResultHitSchema */ export interface FinderResultHitSchema { [key: string]: any | any; /** * The underlying resource id (emailId / talentId / candidateId / jobId). * @type {string} * @memberof FinderResultHitSchema */ id?: string; /** * * @type {string} * @memberof FinderResultHitSchema */ tenantId?: string; /** * * @type {string} * @memberof FinderResultHitSchema */ status?: string; /** * * @type {string} * @memberof FinderResultHitSchema */ source?: string; /** * * @type {string} * @memberof FinderResultHitSchema */ created?: string; /** * * @type {string} * @memberof FinderResultHitSchema */ shortCode?: string; } /** * Check if a given object implements the FinderResultHitSchema interface. */ export declare function instanceOfFinderResultHitSchema(value: object): value is FinderResultHitSchema; export declare function FinderResultHitSchemaFromJSON(json: any): FinderResultHitSchema; export declare function FinderResultHitSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinderResultHitSchema; export declare function FinderResultHitSchemaToJSON(json: any): FinderResultHitSchema; export declare function FinderResultHitSchemaToJSONTyped(value?: FinderResultHitSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FinderResultHitSchema.d.ts.map