/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 ElementsUserMiniReference */ export interface ElementsUserMiniReference { /** * * @type {number} * @memberof ElementsUserMiniReference */ id: number; /** * * @type {string} * @memberof ElementsUserMiniReference */ readonly avatar?: string | null; /** * * @type {string} * @memberof ElementsUserMiniReference */ readonly displayName?: string; /** * * @type {string} * @memberof ElementsUserMiniReference */ readonly email?: string | null; /** * * @type {string} * @memberof ElementsUserMiniReference */ readonly fullName?: string | null; /** * * @type {boolean} * @memberof ElementsUserMiniReference */ readonly isExternal?: boolean; /** * * @type {boolean} * @memberof ElementsUserMiniReference */ readonly isCloud?: boolean; /** * * @type {string} * @memberof ElementsUserMiniReference */ readonly username?: string; } export declare function ElementsUserMiniReferenceFromJSON(json: any): ElementsUserMiniReference; export declare function ElementsUserMiniReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ElementsUserMiniReference; export declare function ElementsUserMiniReferenceToJSON(value?: ElementsUserMiniReference | null): any;