/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { CandidateResourceSchema } from './CandidateResourceSchema'; /** * * @export * @interface CandidateSchema */ export interface CandidateSchema { /** * * @type {CandidateResourceSchema} * @memberof CandidateSchema */ data?: CandidateResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof CandidateSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof CandidateSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the CandidateSchema interface. */ export declare function instanceOfCandidateSchema(value: object): value is CandidateSchema; export declare function CandidateSchemaFromJSON(json: any): CandidateSchema; export declare function CandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CandidateSchema; export declare function CandidateSchemaToJSON(json: any): CandidateSchema; export declare function CandidateSchemaToJSONTyped(value?: CandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CandidateSchema.d.ts.map