/** * 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 request to retrieve the information about restriction level on a restrict-able object. * @export * @interface RestrictionInformationRequest */ export interface RestrictionInformationRequest { /** * JSON enum for the types of objects which can be restricted by an AccessRequirement. * @type {string} * @memberof RestrictionInformationRequest */ restrictableObjectType?: RestrictionInformationRequestRestrictableObjectTypeEnum; /** * The ID of the requested object. * @type {string} * @memberof RestrictionInformationRequest */ objectId?: string; } /** * @export */ export declare const RestrictionInformationRequestRestrictableObjectTypeEnum: { readonly ENTITY: "ENTITY"; readonly EVALUATION: "EVALUATION"; readonly TEAM: "TEAM"; }; export type RestrictionInformationRequestRestrictableObjectTypeEnum = typeof RestrictionInformationRequestRestrictableObjectTypeEnum[keyof typeof RestrictionInformationRequestRestrictableObjectTypeEnum]; /** * Check if a given object implements the RestrictionInformationRequest interface. */ export declare function instanceOfRestrictionInformationRequest(value: object): value is RestrictionInformationRequest; export declare function RestrictionInformationRequestFromJSON(json: any): RestrictionInformationRequest; export declare function RestrictionInformationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RestrictionInformationRequest; export declare function RestrictionInformationRequestToJSON(json: any): RestrictionInformationRequest; export declare function RestrictionInformationRequestToJSONTyped(value?: RestrictionInformationRequest | null, ignoreDiscriminator?: boolean): any;