/** * 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 { NotificationRelationshipsSchema } from './NotificationRelationshipsSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { NotificationAttributesSchema } from './NotificationAttributesSchema'; /** * * @export * @interface NotificationResourceSchema */ export interface NotificationResourceSchema { /** * * @type {NotificationResourceSchemaTypeEnum} * @memberof NotificationResourceSchema */ type: NotificationResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof NotificationResourceSchema */ id: string; /** * * @type {NotificationAttributesSchema} * @memberof NotificationResourceSchema */ attributes: NotificationAttributesSchema; /** * * @type {NotificationRelationshipsSchema} * @memberof NotificationResourceSchema */ relationships?: NotificationRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof NotificationResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof NotificationResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const NotificationResourceSchemaTypeEnum: { readonly Notifications: "notifications"; }; export type NotificationResourceSchemaTypeEnum = typeof NotificationResourceSchemaTypeEnum[keyof typeof NotificationResourceSchemaTypeEnum]; /** * Check if a given object implements the NotificationResourceSchema interface. */ export declare function instanceOfNotificationResourceSchema(value: object): value is NotificationResourceSchema; export declare function NotificationResourceSchemaFromJSON(json: any): NotificationResourceSchema; export declare function NotificationResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationResourceSchema; export declare function NotificationResourceSchemaToJSON(json: any): NotificationResourceSchema; export declare function NotificationResourceSchemaToJSONTyped(value?: NotificationResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotificationResourceSchema.d.ts.map