/** * 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. */ /** * A list of entity IDs * @export * @interface EntityIdList */ export interface EntityIdList { /** * A list of entity IDs. Limit size 20. * @type {Array} * @memberof EntityIdList */ idList?: Array; } /** * Check if a given object implements the EntityIdList interface. */ export declare function instanceOfEntityIdList(value: object): value is EntityIdList; export declare function EntityIdListFromJSON(json: any): EntityIdList; export declare function EntityIdListFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityIdList; export declare function EntityIdListToJSON(json: any): EntityIdList; export declare function EntityIdListToJSONTyped(value?: EntityIdList | null, ignoreDiscriminator?: boolean): any;