/** * 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 { MeetingRelationshipsJobSchemaData } from './MeetingRelationshipsJobSchemaData'; /** * Job opening the meeting is about. Drives interviewer-bot context enrichment (job description, mustHaves, competencies auto-loaded into the prompt) and the 'meetings for this role' job-page view. Setting this also writes the top-level jobId scalar (JobIdIndex GSI key). * @export * @interface MeetingRelationshipsJobSchema */ export interface MeetingRelationshipsJobSchema { /** * * @type {MeetingRelationshipsJobSchemaData} * @memberof MeetingRelationshipsJobSchema */ data?: MeetingRelationshipsJobSchemaData | null; } /** * Check if a given object implements the MeetingRelationshipsJobSchema interface. */ export declare function instanceOfMeetingRelationshipsJobSchema(value: object): value is MeetingRelationshipsJobSchema; export declare function MeetingRelationshipsJobSchemaFromJSON(json: any): MeetingRelationshipsJobSchema; export declare function MeetingRelationshipsJobSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsJobSchema; export declare function MeetingRelationshipsJobSchemaToJSON(json: any): MeetingRelationshipsJobSchema; export declare function MeetingRelationshipsJobSchemaToJSONTyped(value?: MeetingRelationshipsJobSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsJobSchema.d.ts.map