/** * 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. */ /** * List of IDs of realms * @export * @interface RealmIdList */ export interface RealmIdList { /** * * @type {Array} * @memberof RealmIdList */ realms?: Array; } /** * Check if a given object implements the RealmIdList interface. */ export declare function instanceOfRealmIdList(value: object): value is RealmIdList; export declare function RealmIdListFromJSON(json: any): RealmIdList; export declare function RealmIdListFromJSONTyped(json: any, ignoreDiscriminator: boolean): RealmIdList; export declare function RealmIdListToJSON(json: any): RealmIdList; export declare function RealmIdListToJSONTyped(value?: RealmIdList | null, ignoreDiscriminator?: boolean): any;