/** * 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 { FormRelationshipsJobSchemaData } from './FormRelationshipsJobSchemaData'; /** * * @export * @interface BriefRelationshipsJobSchema */ export interface BriefRelationshipsJobSchema { /** * * @type {FormRelationshipsJobSchemaData} * @memberof BriefRelationshipsJobSchema */ data?: FormRelationshipsJobSchemaData | null; } /** * Check if a given object implements the BriefRelationshipsJobSchema interface. */ export declare function instanceOfBriefRelationshipsJobSchema(value: object): value is BriefRelationshipsJobSchema; export declare function BriefRelationshipsJobSchemaFromJSON(json: any): BriefRelationshipsJobSchema; export declare function BriefRelationshipsJobSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): BriefRelationshipsJobSchema; export declare function BriefRelationshipsJobSchemaToJSON(json: any): BriefRelationshipsJobSchema; export declare function BriefRelationshipsJobSchemaToJSONTyped(value?: BriefRelationshipsJobSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BriefRelationshipsJobSchema.d.ts.map