/** * 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 revoke access of an accessor group. Accessors will be group by submitter and access requirement. * @export * @interface AccessorGroupRevokeRequest */ export interface AccessorGroupRevokeRequest { /** * The ID of an AccessRequirement. * @type {string} * @memberof AccessorGroupRevokeRequest */ accessRequirementId?: string; /** * The ID of the submitter. * @type {string} * @memberof AccessorGroupRevokeRequest */ submitterId?: string; } /** * Check if a given object implements the AccessorGroupRevokeRequest interface. */ export declare function instanceOfAccessorGroupRevokeRequest(value: object): value is AccessorGroupRevokeRequest; export declare function AccessorGroupRevokeRequestFromJSON(json: any): AccessorGroupRevokeRequest; export declare function AccessorGroupRevokeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessorGroupRevokeRequest; export declare function AccessorGroupRevokeRequestToJSON(json: any): AccessorGroupRevokeRequest; export declare function AccessorGroupRevokeRequestToJSONTyped(value?: AccessorGroupRevokeRequest | null, ignoreDiscriminator?: boolean): any;