/** * 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 { CallRelationshipsJobDataSchema } from './CallRelationshipsJobDataSchema'; /** * Job opening this call is about. Set on screening calls + phone-brief outbound clarifications targeting a specific opening. Drives criteriaScoring against the job's criteria. * @export * @interface CallRelationshipsJobSchema */ export interface CallRelationshipsJobSchema { /** * * @type {CallRelationshipsJobDataSchema} * @memberof CallRelationshipsJobSchema */ data?: CallRelationshipsJobDataSchema | null; } /** * Check if a given object implements the CallRelationshipsJobSchema interface. */ export declare function instanceOfCallRelationshipsJobSchema(value: object): value is CallRelationshipsJobSchema; export declare function CallRelationshipsJobSchemaFromJSON(json: any): CallRelationshipsJobSchema; export declare function CallRelationshipsJobSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsJobSchema; export declare function CallRelationshipsJobSchemaToJSON(json: any): CallRelationshipsJobSchema; export declare function CallRelationshipsJobSchemaToJSONTyped(value?: CallRelationshipsJobSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallRelationshipsJobSchema.d.ts.map