/** * 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 { DerivedRoleRuleRead } from './DerivedRoleRuleRead.js'; /** * * @export * @interface DerivedRoleBlockRead */ export interface DerivedRoleBlockRead { /** * * @type {DerivedRoleSettings} * @memberof DerivedRoleBlockRead */ when?: DerivedRoleSettings; /** * * @type {Array} * @memberof DerivedRoleBlockRead */ usersWithRole?: Array; } /** * Check if a given object implements the DerivedRoleBlockRead interface. */ export declare function instanceOfDerivedRoleBlockRead(value: object): value is DerivedRoleBlockRead; export declare function DerivedRoleBlockReadFromJSON(json: any): DerivedRoleBlockRead; export declare function DerivedRoleBlockReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): DerivedRoleBlockRead; export declare function DerivedRoleBlockReadToJSON(json: any): DerivedRoleBlockRead; export declare function DerivedRoleBlockReadToJSONTyped(value?: DerivedRoleBlockRead | null, ignoreDiscriminator?: boolean): any;