/** * 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 { NotificationResourceSchema } from './NotificationResourceSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface NotificationSchema */ export interface NotificationSchema { /** * * @type {NotificationResourceSchema} * @memberof NotificationSchema */ data?: NotificationResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof NotificationSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof NotificationSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the NotificationSchema interface. */ export declare function instanceOfNotificationSchema(value: object): value is NotificationSchema; export declare function NotificationSchemaFromJSON(json: any): NotificationSchema; export declare function NotificationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationSchema; export declare function NotificationSchemaToJSON(json: any): NotificationSchema; export declare function NotificationSchemaToJSONTyped(value?: NotificationSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotificationSchema.d.ts.map