/** * 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 { RoleCounts } from './RoleCounts.js'; /** * * @export * @interface RoleAssignmentCount */ export interface RoleAssignmentCount { /** * * @type {{ [key: string]: RoleCounts; }} * @memberof RoleAssignmentCount */ roles?: { [key: string]: RoleCounts; }; } /** * Check if a given object implements the RoleAssignmentCount interface. */ export declare function instanceOfRoleAssignmentCount(value: object): value is RoleAssignmentCount; export declare function RoleAssignmentCountFromJSON(json: any): RoleAssignmentCount; export declare function RoleAssignmentCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoleAssignmentCount; export declare function RoleAssignmentCountToJSON(json: any): RoleAssignmentCount; export declare function RoleAssignmentCountToJSONTyped(value?: RoleAssignmentCount | null, ignoreDiscriminator?: boolean): any;