/** * 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 { FormRelationshipsJobSchema } from './FormRelationshipsJobSchema'; /** * Declared in the WIRE shape: the row stores plural `jobs` with one entry, transform_all_relationships serialises it as to-one singular `job`. * @export * @interface FormRelationshipsSchema */ export interface FormRelationshipsSchema { /** * * @type {FormRelationshipsJobSchema} * @memberof FormRelationshipsSchema */ job?: FormRelationshipsJobSchema; } /** * Check if a given object implements the FormRelationshipsSchema interface. */ export declare function instanceOfFormRelationshipsSchema(value: object): value is FormRelationshipsSchema; export declare function FormRelationshipsSchemaFromJSON(json: any): FormRelationshipsSchema; export declare function FormRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormRelationshipsSchema; export declare function FormRelationshipsSchemaToJSON(json: any): FormRelationshipsSchema; export declare function FormRelationshipsSchemaToJSONTyped(value?: FormRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FormRelationshipsSchema.d.ts.map