/**
 * VRt.Account [AC]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { UserRoleAccount } from './userRole';
import { AttributeAccount } from './attribute';
/**
 * User.
 */
export interface UserAccount {
    [key: string]: any | any;
    /**
     * Unique username for login.
     */
    username: string;
    /**
     * Password.
     */
    password?: string | null;
    /**
     * User specification.
     */
    specification?: string | null;
    /**
     * User e-mail address.
     */
    email?: string | null;
    /**
     * User phone.
     */
    phone?: string | null;
    /**
     * Unique company key.
     */
    company_key: string;
    /**
     * User status.
     */
    enabled?: boolean;
    /**
     * List of user roles.
     */
    roles: Array<UserRoleAccount>;
    /**
     * Timezone.
     */
    timezone?: number;
    /**
     * Last edit date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
     */
    readonly edit_date?: string | null;
    /**
     * Creation date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
     */
    readonly creation_date?: string | null;
    /**
     * Attributes. Used to add service information.
     */
    attributes?: Array<AttributeAccount>;
}
