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