/** * 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. */ /** * Request for a single user change access to a resource. * @export * @interface AccessorChange */ export interface AccessorChange { /** * The ID of the user. * @type {string} * @memberof AccessorChange */ userId?: string; /** * The type of access change for this user. Users can gain access, renew access, or have access revoked. * @type {string} * @memberof AccessorChange */ type?: AccessorChangeTypeEnum; } /** * @export */ export declare const AccessorChangeTypeEnum: { readonly GAIN_ACCESS: "GAIN_ACCESS"; readonly RENEW_ACCESS: "RENEW_ACCESS"; readonly REVOKE_ACCESS: "REVOKE_ACCESS"; }; export type AccessorChangeTypeEnum = typeof AccessorChangeTypeEnum[keyof typeof AccessorChangeTypeEnum]; /** * Check if a given object implements the AccessorChange interface. */ export declare function instanceOfAccessorChange(value: object): value is AccessorChange; export declare function AccessorChangeFromJSON(json: any): AccessorChange; export declare function AccessorChangeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessorChange; export declare function AccessorChangeToJSON(json: any): AccessorChange; export declare function AccessorChangeToJSONTyped(value?: AccessorChange | null, ignoreDiscriminator?: boolean): any;