/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 { UserAccess } from './user-access'; /** * * @export * @interface BaseUser */ export interface BaseUser { /** * The user ID * @type {number} */ 'id'?: number; /** * The user name * @type {string} */ 'name'?: string; /** * The user default currency * @type {string} */ 'default_currency'?: string; /** * The user locale * @type {string} */ 'locale'?: string; /** * The user language ID * @type {number} */ 'lang'?: number; /** * The user email * @type {string} */ 'email'?: string; /** * The user phone * @type {string} */ 'phone'?: string | null; /** * Boolean that indicates whether the user is activated * @type {boolean} */ 'activated'?: boolean; /** * The last login date and time of the user. Format: YYYY-MM-DD HH:MM:SS * @type {string} */ 'last_login'?: string; /** * The creation date and time of the user. Format: YYYY-MM-DD HH:MM:SS * @type {string} */ 'created'?: string; /** * The last modification date and time of the user. Format: YYYY-MM-DD HH:MM:SS * @type {string} */ 'modified'?: string | null; /** * Boolean that indicates whether the user has created a company * @type {boolean} */ 'has_created_company'?: boolean; /** * * @type {Array} */ 'access'?: Array; /** * Boolean that indicates whether the user is activated * @type {boolean} */ 'active_flag'?: boolean; /** * The user timezone name * @type {string} */ 'timezone_name'?: string; /** * The user timezone offset * @type {string} */ 'timezone_offset'?: string; /** * The ID of the user role * @type {number} */ 'role_id'?: number; /** * The user icon URL * @type {string} */ 'icon_url'?: string | null; /** * Boolean that indicates if the requested user is the same which is logged in (in this case, always true) * @type {boolean} */ 'is_you'?: boolean; /** * Boolean that indicates whether the user is deleted from the company * @type {boolean} */ 'is_deleted'?: boolean; }