/** * 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 { UpdateNotificationRequestBodyData } from './UpdateNotificationRequestBodyData'; /** * * @export * @interface UpdateNotificationRequestBody */ export interface UpdateNotificationRequestBody { /** * * @type {UpdateNotificationRequestBodyData} * @memberof UpdateNotificationRequestBody */ data: UpdateNotificationRequestBodyData; } /** * Check if a given object implements the UpdateNotificationRequestBody interface. */ export declare function instanceOfUpdateNotificationRequestBody(value: object): value is UpdateNotificationRequestBody; export declare function UpdateNotificationRequestBodyFromJSON(json: any): UpdateNotificationRequestBody; export declare function UpdateNotificationRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateNotificationRequestBody; export declare function UpdateNotificationRequestBodyToJSON(json: any): UpdateNotificationRequestBody; export declare function UpdateNotificationRequestBodyToJSONTyped(value?: UpdateNotificationRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateNotificationRequestBody.d.ts.map