/** * 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 { CreateReportRequestBodyData } from './CreateReportRequestBodyData'; /** * * @export * @interface CreateReportRequestBody */ export interface CreateReportRequestBody { /** * * @type {CreateReportRequestBodyData} * @memberof CreateReportRequestBody */ data: CreateReportRequestBodyData; } /** * Check if a given object implements the CreateReportRequestBody interface. */ export declare function instanceOfCreateReportRequestBody(value: object): value is CreateReportRequestBody; export declare function CreateReportRequestBodyFromJSON(json: any): CreateReportRequestBody; export declare function CreateReportRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateReportRequestBody; export declare function CreateReportRequestBodyToJSON(json: any): CreateReportRequestBody; export declare function CreateReportRequestBodyToJSONTyped(value?: CreateReportRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateReportRequestBody.d.ts.map