/** * 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 { NotificationRelationshipsCallsSchema } from './NotificationRelationshipsCallsSchema'; import type { NotificationRelationshipsSchemaSubject } from './NotificationRelationshipsSchemaSubject'; import type { NotificationRelationshipsSchemaUser } from './NotificationRelationshipsSchemaUser'; /** * Declared in the WIRE shape, not the storage shape. Rows keep to-many entries as arrays, but transform_all_relationships serialises `users` to-ONE (RELATIONSHIP_TYPES says cardinality one) and renames it `user` - a spec written from the row therefore matches nothing and the generated client silently drops the whole relationship. * @export * @interface NotificationRelationshipsSchema */ export interface NotificationRelationshipsSchema { /** * * @type {NotificationRelationshipsSchemaUser} * @memberof NotificationRelationshipsSchema */ user?: NotificationRelationshipsSchemaUser; /** * * @type {NotificationRelationshipsSchemaSubject} * @memberof NotificationRelationshipsSchema */ subject?: NotificationRelationshipsSchemaSubject; /** * * @type {NotificationRelationshipsCallsSchema} * @memberof NotificationRelationshipsSchema */ calls?: NotificationRelationshipsCallsSchema; } /** * Check if a given object implements the NotificationRelationshipsSchema interface. */ export declare function instanceOfNotificationRelationshipsSchema(value: object): value is NotificationRelationshipsSchema; export declare function NotificationRelationshipsSchemaFromJSON(json: any): NotificationRelationshipsSchema; export declare function NotificationRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationRelationshipsSchema; export declare function NotificationRelationshipsSchemaToJSON(json: any): NotificationRelationshipsSchema; export declare function NotificationRelationshipsSchemaToJSONTyped(value?: NotificationRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotificationRelationshipsSchema.d.ts.map