/** * 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 { CreateNotificationRequestBodyData } from './CreateNotificationRequestBodyData'; /** * * @export * @interface CreateNotificationRequestBody */ export interface CreateNotificationRequestBody { /** * * @type {CreateNotificationRequestBodyData} * @memberof CreateNotificationRequestBody */ data: CreateNotificationRequestBodyData; } /** * Check if a given object implements the CreateNotificationRequestBody interface. */ export declare function instanceOfCreateNotificationRequestBody(value: object): value is CreateNotificationRequestBody; export declare function CreateNotificationRequestBodyFromJSON(json: any): CreateNotificationRequestBody; export declare function CreateNotificationRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateNotificationRequestBody; export declare function CreateNotificationRequestBodyToJSON(json: any): CreateNotificationRequestBody; export declare function CreateNotificationRequestBodyToJSONTyped(value?: CreateNotificationRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateNotificationRequestBody.d.ts.map