/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Grant } from './Grant'; /** * * @export * @interface UserProfile */ export interface UserProfile { /** * * @type {string} * @memberof UserProfile */ user: string; /** * * @type {boolean} * @memberof UserProfile */ isAdmin: boolean; /** * * @type {string} * @memberof UserProfile */ apiKey?: string; /** * * @type {Array} * @memberof UserProfile */ roles?: Array; /** * * @type {Array} * @memberof UserProfile */ grants?: Array; } export declare function UserProfileFromJSON(json: any): UserProfile; export declare function UserProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfile; export declare function UserProfileToJSON(value?: UserProfile | null): any;