/**
 * Meeting BaaS API
 * Meeting BaaS API
 *
 * The version of the OpenAPI document: 1.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { SystemTime } from './system-time';
/**
 * This structure represents the user\'s account information.
 * @export
 * @interface Account
 */
export interface Account {
    /**
     *
     * @type {string}
     * @memberof Account
     */
    'company_name'?: string | null;
    /**
     *
     * @type {SystemTime}
     * @memberof Account
     */
    'createdAt': SystemTime;
    /**
     *
     * @type {string}
     * @memberof Account
     */
    'email': string;
    /**
     *
     * @type {string}
     * @memberof Account
     */
    'firstname'?: string | null;
    /**
     *
     * @type {number}
     * @memberof Account
     */
    'id': number;
    /**
     *
     * @type {string}
     * @memberof Account
     */
    'lastname'?: string | null;
    /**
     *
     * @type {string}
     * @memberof Account
     */
    'phone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof Account
     */
    'secret': string;
    /**
     *
     * @type {number}
     * @memberof Account
     */
    'status': number;
}
