/** * 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 SubmissionRelationshipsJobSchema */ export interface SubmissionRelationshipsJobSchema { /** * * @type {FormRelationshipsJobSchemaData} * @memberof SubmissionRelationshipsJobSchema */ data?: FormRelationshipsJobSchemaData | null; } /** * Check if a given object implements the SubmissionRelationshipsJobSchema interface. */ export declare function instanceOfSubmissionRelationshipsJobSchema(value: object): value is SubmissionRelationshipsJobSchema; export declare function SubmissionRelationshipsJobSchemaFromJSON(json: any): SubmissionRelationshipsJobSchema; export declare function SubmissionRelationshipsJobSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionRelationshipsJobSchema; export declare function SubmissionRelationshipsJobSchemaToJSON(json: any): SubmissionRelationshipsJobSchema; export declare function SubmissionRelationshipsJobSchemaToJSONTyped(value?: SubmissionRelationshipsJobSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SubmissionRelationshipsJobSchema.d.ts.map