/** * 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 { NotificationRelationshipsSchemaSubjectData } from './NotificationRelationshipsSchemaSubjectData'; /** * What the notification is ABOUT - the target of the bell's deep link. Always this name, whatever the resource is, and it carries its own `type` so the client routes on that. Producers used to key this by resource type (`tasks`, `jobs`, ...), which cannot be declared here without enumerating every type any producer might ever use, so the typed client dropped all of them; it also collided with `user` outright when the subject was itself a user, overwriting the recipient. Absent when the notification is about nothing in particular. * @export * @interface NotificationRelationshipsSchemaSubject */ export interface NotificationRelationshipsSchemaSubject { /** * * @type {NotificationRelationshipsSchemaSubjectData} * @memberof NotificationRelationshipsSchemaSubject */ data?: NotificationRelationshipsSchemaSubjectData; } /** * Check if a given object implements the NotificationRelationshipsSchemaSubject interface. */ export declare function instanceOfNotificationRelationshipsSchemaSubject(value: object): value is NotificationRelationshipsSchemaSubject; export declare function NotificationRelationshipsSchemaSubjectFromJSON(json: any): NotificationRelationshipsSchemaSubject; export declare function NotificationRelationshipsSchemaSubjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationRelationshipsSchemaSubject; export declare function NotificationRelationshipsSchemaSubjectToJSON(json: any): NotificationRelationshipsSchemaSubject; export declare function NotificationRelationshipsSchemaSubjectToJSONTyped(value?: NotificationRelationshipsSchemaSubject | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotificationRelationshipsSchemaSubject.d.ts.map