/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { NotificationResourceSchema } from './NotificationResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface NotificationsSchema */ export interface NotificationsSchema { /** * * @type {Array} * @memberof NotificationsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof NotificationsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof NotificationsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the NotificationsSchema interface. */ export declare function instanceOfNotificationsSchema(value: object): value is NotificationsSchema; export declare function NotificationsSchemaFromJSON(json: any): NotificationsSchema; export declare function NotificationsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationsSchema; export declare function NotificationsSchemaToJSON(json: any): NotificationsSchema; export declare function NotificationsSchemaToJSONTyped(value?: NotificationsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotificationsSchema.d.ts.map