/** * 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 { JobRelationshipsCandidatesMetaByStageSchema } from './JobRelationshipsCandidatesMetaByStageSchema'; /** * Live candidate counters maintained on the job row by the candidate * lifecycle events (created/stage-changed/deleted), clamped to >= 0. * Present on both list and show responses. Server-maintained: any * value sent in a request body is ignored. The scalable companion to * `GET /v1/candidates?filterJobId=` - render badges from here, rows * from the list. * @export * @interface JobRelationshipsCandidatesMetaSchema */ export interface JobRelationshipsCandidatesMetaSchema { /** * Number of candidates on this job. * @type {number} * @memberof JobRelationshipsCandidatesMetaSchema */ total?: number; /** * * @type {JobRelationshipsCandidatesMetaByStageSchema} * @memberof JobRelationshipsCandidatesMetaSchema */ byStage?: JobRelationshipsCandidatesMetaByStageSchema; } /** * Check if a given object implements the JobRelationshipsCandidatesMetaSchema interface. */ export declare function instanceOfJobRelationshipsCandidatesMetaSchema(value: object): value is JobRelationshipsCandidatesMetaSchema; export declare function JobRelationshipsCandidatesMetaSchemaFromJSON(json: any): JobRelationshipsCandidatesMetaSchema; export declare function JobRelationshipsCandidatesMetaSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobRelationshipsCandidatesMetaSchema; export declare function JobRelationshipsCandidatesMetaSchemaToJSON(json: any): JobRelationshipsCandidatesMetaSchema; export declare function JobRelationshipsCandidatesMetaSchemaToJSONTyped(value?: JobRelationshipsCandidatesMetaSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobRelationshipsCandidatesMetaSchema.d.ts.map