/** * 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 { NotificationRelationshipsSchemaUserData } from './NotificationRelationshipsSchemaUserData'; /** * Who the notification is FOR. Singular and to-one on the wire. * @export * @interface NotificationRelationshipsSchemaUser */ export interface NotificationRelationshipsSchemaUser { /** * * @type {NotificationRelationshipsSchemaUserData} * @memberof NotificationRelationshipsSchemaUser */ data?: NotificationRelationshipsSchemaUserData; } /** * Check if a given object implements the NotificationRelationshipsSchemaUser interface. */ export declare function instanceOfNotificationRelationshipsSchemaUser(value: object): value is NotificationRelationshipsSchemaUser; export declare function NotificationRelationshipsSchemaUserFromJSON(json: any): NotificationRelationshipsSchemaUser; export declare function NotificationRelationshipsSchemaUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationRelationshipsSchemaUser; export declare function NotificationRelationshipsSchemaUserToJSON(json: any): NotificationRelationshipsSchemaUser; export declare function NotificationRelationshipsSchemaUserToJSONTyped(value?: NotificationRelationshipsSchemaUser | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotificationRelationshipsSchemaUser.d.ts.map