/** * 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 * @export * @interface IdList */ export interface IdList { /** * * @type {Array} * @memberof IdList */ list?: Array; } /** * Check if a given object implements the IdList interface. */ export declare function instanceOfIdList(value: object): value is IdList; export declare function IdListFromJSON(json: any): IdList; export declare function IdListFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdList; export declare function IdListToJSON(json: any): IdList; export declare function IdListToJSONTyped(value?: IdList | null, ignoreDiscriminator?: boolean): any;