/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { MessageRecipientSet } from './MessageRecipientSet'; import type { MessageToUser } from './MessageToUser'; /** * @type MessageRecipientSetInterface * Contains a set of IDs of the intended recipients of a message * @export */ export type MessageRecipientSetInterface = { concreteType: 'org.sagebionetworks.repo.model.message.MessageRecipientSet'; } & MessageRecipientSet | { concreteType: 'org.sagebionetworks.repo.model.message.MessageToUser'; } & MessageToUser; export declare function MessageRecipientSetInterfaceFromJSON(json: any): MessageRecipientSetInterface; export declare function MessageRecipientSetInterfaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): MessageRecipientSetInterface; export declare function MessageRecipientSetInterfaceToJSON(json: any): any; export declare function MessageRecipientSetInterfaceToJSONTyped(value?: MessageRecipientSetInterface | null, ignoreDiscriminator?: boolean): any;