/** * 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 { RestrictionInformationResponse } from './RestrictionInformationResponse'; /** * The information about restriction level on a list of restrict-able objects. * @export * @interface RestrictionInformationBatchResponse */ export interface RestrictionInformationBatchResponse { /** * The list of RestrictionInformationResponse for each of the object ids included in the request. * @type {Array} * @memberof RestrictionInformationBatchResponse */ restrictionInformation?: Array; } /** * Check if a given object implements the RestrictionInformationBatchResponse interface. */ export declare function instanceOfRestrictionInformationBatchResponse(value: object): value is RestrictionInformationBatchResponse; export declare function RestrictionInformationBatchResponseFromJSON(json: any): RestrictionInformationBatchResponse; export declare function RestrictionInformationBatchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RestrictionInformationBatchResponse; export declare function RestrictionInformationBatchResponseToJSON(json: any): RestrictionInformationBatchResponse; export declare function RestrictionInformationBatchResponseToJSONTyped(value?: RestrictionInformationBatchResponse | null, ignoreDiscriminator?: boolean): any;