/** * 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. */ /** * * @export * @interface RoleCounts */ export interface RoleCounts { /** * * @type {string} * @memberof RoleCounts */ roleName?: string; /** * * @type {number} * @memberof RoleCounts */ assignedUserCount?: number; /** * * @type {number} * @memberof RoleCounts */ childRoleCount?: number; } /** * Check if a given object implements the RoleCounts interface. */ export declare function instanceOfRoleCounts(value: object): value is RoleCounts; export declare function RoleCountsFromJSON(json: any): RoleCounts; export declare function RoleCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoleCounts; export declare function RoleCountsToJSON(json: any): RoleCounts; export declare function RoleCountsToJSONTyped(value?: RoleCounts | null, ignoreDiscriminator?: boolean): any;