/** * 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 { EmailRelationshipsJobsSchemaDataInner } from './EmailRelationshipsJobsSchemaDataInner'; /** * * @export * @interface FeedbackRelationshipsJobsSchema */ export interface FeedbackRelationshipsJobsSchema { /** * * @type {EmailRelationshipsJobsSchemaDataInner} * @memberof FeedbackRelationshipsJobsSchema */ data?: EmailRelationshipsJobsSchemaDataInner; } /** * Check if a given object implements the FeedbackRelationshipsJobsSchema interface. */ export declare function instanceOfFeedbackRelationshipsJobsSchema(value: object): value is FeedbackRelationshipsJobsSchema; export declare function FeedbackRelationshipsJobsSchemaFromJSON(json: any): FeedbackRelationshipsJobsSchema; export declare function FeedbackRelationshipsJobsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeedbackRelationshipsJobsSchema; export declare function FeedbackRelationshipsJobsSchemaToJSON(json: any): FeedbackRelationshipsJobsSchema; export declare function FeedbackRelationshipsJobsSchemaToJSONTyped(value?: FeedbackRelationshipsJobsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FeedbackRelationshipsJobsSchema.d.ts.map