/** * 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 ElementsUserProfilePartialUpdate */ export interface ElementsUserProfilePartialUpdate { /** * * @type {string} * @memberof ElementsUserProfilePartialUpdate */ avatar?: string | null; /** * * @type {string} * @memberof ElementsUserProfilePartialUpdate */ defaultPage?: string; /** * * @type {string} * @memberof ElementsUserProfilePartialUpdate */ fullName?: string | null; /** * * @type {string} * @memberof ElementsUserProfilePartialUpdate */ language?: ElementsUserProfilePartialUpdateLanguageEnum; /** * * @type {Array} * @memberof ElementsUserProfilePartialUpdate */ fmBookmarks?: Array; } /** * @export * @enum {string} */ export declare enum ElementsUserProfilePartialUpdateLanguageEnum { En = "en", Fr = "fr", De = "de", Ru = "ru" } export declare function ElementsUserProfilePartialUpdateFromJSON(json: any): ElementsUserProfilePartialUpdate; export declare function ElementsUserProfilePartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ElementsUserProfilePartialUpdate; export declare function ElementsUserProfilePartialUpdateToJSON(value?: ElementsUserProfilePartialUpdate | null): any;