/** * 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 { FeedbackRelationshipsJobSchema } from './FeedbackRelationshipsJobSchema'; /** * 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 FeedbackRelationshipsSchema */ export interface FeedbackRelationshipsSchema { /** * * @type {FeedbackRelationshipsJobSchema} * @memberof FeedbackRelationshipsSchema */ job?: FeedbackRelationshipsJobSchema; } /** * Check if a given object implements the FeedbackRelationshipsSchema interface. */ export declare function instanceOfFeedbackRelationshipsSchema(value: object): value is FeedbackRelationshipsSchema; export declare function FeedbackRelationshipsSchemaFromJSON(json: any): FeedbackRelationshipsSchema; export declare function FeedbackRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeedbackRelationshipsSchema; export declare function FeedbackRelationshipsSchemaToJSON(json: any): FeedbackRelationshipsSchema; export declare function FeedbackRelationshipsSchemaToJSONTyped(value?: FeedbackRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FeedbackRelationshipsSchema.d.ts.map