/** * 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 { EmailRelationshipsReportDataSchema } from './EmailRelationshipsReportDataSchema'; /** * * @export * @interface EmailRelationshipsReportSchema */ export interface EmailRelationshipsReportSchema { /** * * @type {EmailRelationshipsReportDataSchema} * @memberof EmailRelationshipsReportSchema */ data?: EmailRelationshipsReportDataSchema | null; } /** * Check if a given object implements the EmailRelationshipsReportSchema interface. */ export declare function instanceOfEmailRelationshipsReportSchema(value: object): value is EmailRelationshipsReportSchema; export declare function EmailRelationshipsReportSchemaFromJSON(json: any): EmailRelationshipsReportSchema; export declare function EmailRelationshipsReportSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailRelationshipsReportSchema; export declare function EmailRelationshipsReportSchemaToJSON(json: any): EmailRelationshipsReportSchema; export declare function EmailRelationshipsReportSchemaToJSONTyped(value?: EmailRelationshipsReportSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EmailRelationshipsReportSchema.d.ts.map