/** * 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 { PersonaRelationshipsCandidatesSchema } from './PersonaRelationshipsCandidatesSchema'; import type { PersonaRelationshipsJobsSchema } from './PersonaRelationshipsJobsSchema'; import type { PersonaRelationshipsUserSchema } from './PersonaRelationshipsUserSchema'; import type { PersonaRelationshipsOperationsSchema } from './PersonaRelationshipsOperationsSchema'; /** * Cohort MEMBERSHIP is never exposed: the `talents` relationship (the * hired people behind the aggregate) is stripped from every response - * the persona is an aggregate of at least three people, and listing * them would undo exactly that. * @export * @interface PersonaRelationshipsSchema */ export interface PersonaRelationshipsSchema { /** * * @type {PersonaRelationshipsUserSchema} * @memberof PersonaRelationshipsSchema */ user?: PersonaRelationshipsUserSchema; /** * * @type {PersonaRelationshipsJobsSchema} * @memberof PersonaRelationshipsSchema */ jobs?: PersonaRelationshipsJobsSchema; /** * * @type {PersonaRelationshipsCandidatesSchema} * @memberof PersonaRelationshipsSchema */ candidates?: PersonaRelationshipsCandidatesSchema; /** * * @type {PersonaRelationshipsOperationsSchema} * @memberof PersonaRelationshipsSchema */ operations?: PersonaRelationshipsOperationsSchema; } /** * Check if a given object implements the PersonaRelationshipsSchema interface. */ export declare function instanceOfPersonaRelationshipsSchema(value: object): value is PersonaRelationshipsSchema; export declare function PersonaRelationshipsSchemaFromJSON(json: any): PersonaRelationshipsSchema; export declare function PersonaRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PersonaRelationshipsSchema; export declare function PersonaRelationshipsSchemaToJSON(json: any): PersonaRelationshipsSchema; export declare function PersonaRelationshipsSchemaToJSONTyped(value?: PersonaRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PersonaRelationshipsSchema.d.ts.map