/** * 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 { JobRelationshipsSchema } from './JobRelationshipsSchema'; /** * * @export * @interface ListCandidateJobsRelationship */ export interface ListCandidateJobsRelationship { /** * List of resource linkage identifiers * @type {Array} * @memberof ListCandidateJobsRelationship */ data?: Array; /** * * @type {ResourceLinksSchema} * @memberof ListCandidateJobsRelationship */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ListCandidateJobsRelationship */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ListCandidateJobsRelationship interface. */ export declare function instanceOfListCandidateJobsRelationship(value: object): value is ListCandidateJobsRelationship; export declare function ListCandidateJobsRelationshipFromJSON(json: any): ListCandidateJobsRelationship; export declare function ListCandidateJobsRelationshipFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListCandidateJobsRelationship; export declare function ListCandidateJobsRelationshipToJSON(json: any): ListCandidateJobsRelationship; export declare function ListCandidateJobsRelationshipToJSONTyped(value?: ListCandidateJobsRelationship | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ListCandidateJobsRelationship.d.ts.map