/** * 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 batch request to retrieve the information about restriction level on a list of restrict-able objects. * @export * @interface RestrictionInformationBatchRequest */ export interface RestrictionInformationBatchRequest { /** * JSON enum for the types of objects which can be restricted by an AccessRequirement. * @type {string} * @memberof RestrictionInformationBatchRequest */ restrictableObjectType?: RestrictionInformationBatchRequestRestrictableObjectTypeEnum; /** * The list of IDs to request restriction information about. Limited to a max of 50 object ids. * @type {Array} * @memberof RestrictionInformationBatchRequest */ objectIds?: Array; } /** * @export */ export declare const RestrictionInformationBatchRequestRestrictableObjectTypeEnum: { readonly ENTITY: "ENTITY"; readonly EVALUATION: "EVALUATION"; readonly TEAM: "TEAM"; }; export type RestrictionInformationBatchRequestRestrictableObjectTypeEnum = typeof RestrictionInformationBatchRequestRestrictableObjectTypeEnum[keyof typeof RestrictionInformationBatchRequestRestrictableObjectTypeEnum]; /** * Check if a given object implements the RestrictionInformationBatchRequest interface. */ export declare function instanceOfRestrictionInformationBatchRequest(value: object): value is RestrictionInformationBatchRequest; export declare function RestrictionInformationBatchRequestFromJSON(json: any): RestrictionInformationBatchRequest; export declare function RestrictionInformationBatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RestrictionInformationBatchRequest; export declare function RestrictionInformationBatchRequestToJSON(json: any): RestrictionInformationBatchRequest; export declare function RestrictionInformationBatchRequestToJSONTyped(value?: RestrictionInformationBatchRequest | null, ignoreDiscriminator?: boolean): any;