/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 { DerivedRoleSettings } from './DerivedRoleSettings.js'; import type { DerivedRoleRuleCreate } from './DerivedRoleRuleCreate.js'; /** * * @export * @interface DerivedRoleBlockEdit */ export interface DerivedRoleBlockEdit { /** * * @type {DerivedRoleSettings} * @memberof DerivedRoleBlockEdit */ when?: DerivedRoleSettings; /** * * @type {Array} * @memberof DerivedRoleBlockEdit */ usersWithRole?: Array; } /** * Check if a given object implements the DerivedRoleBlockEdit interface. */ export declare function instanceOfDerivedRoleBlockEdit(value: object): value is DerivedRoleBlockEdit; export declare function DerivedRoleBlockEditFromJSON(json: any): DerivedRoleBlockEdit; export declare function DerivedRoleBlockEditFromJSONTyped(json: any, ignoreDiscriminator: boolean): DerivedRoleBlockEdit; export declare function DerivedRoleBlockEditToJSON(json: any): DerivedRoleBlockEdit; export declare function DerivedRoleBlockEditToJSONTyped(value?: DerivedRoleBlockEdit | null, ignoreDiscriminator?: boolean): any;