/** * 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. */ /** * Contains a set of IDs of the intended recipients of a message * @export * @interface MessageRecipientSet */ export interface MessageRecipientSet { /** * The unique identifiers of the intended recipients of a message * @type {Set} * @memberof MessageRecipientSet */ recipients?: Set; } /** * Check if a given object implements the MessageRecipientSet interface. */ export declare function instanceOfMessageRecipientSet(value: object): value is MessageRecipientSet; export declare function MessageRecipientSetFromJSON(json: any): MessageRecipientSet; export declare function MessageRecipientSetFromJSONTyped(json: any, ignoreDiscriminator: boolean): MessageRecipientSet; export declare function MessageRecipientSetToJSON(json: any): MessageRecipientSet; export declare function MessageRecipientSetToJSONTyped(value?: MessageRecipientSet | null, ignoreDiscriminator?: boolean): any;