/** * 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 RoleAssignmentCountInput */ export interface RoleAssignmentCountInput { /** * * @type {string} * @memberof RoleAssignmentCountInput */ roleName?: string; /** * * @type {string} * @memberof RoleAssignmentCountInput */ resourceKey?: string; } /** * Check if a given object implements the RoleAssignmentCountInput interface. */ export declare function instanceOfRoleAssignmentCountInput(value: object): value is RoleAssignmentCountInput; export declare function RoleAssignmentCountInputFromJSON(json: any): RoleAssignmentCountInput; export declare function RoleAssignmentCountInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoleAssignmentCountInput; export declare function RoleAssignmentCountInputToJSON(json: any): RoleAssignmentCountInput; export declare function RoleAssignmentCountInputToJSONTyped(value?: RoleAssignmentCountInput | null, ignoreDiscriminator?: boolean): any;