/**
 * CloudHospital Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 2
 * Contact: developer@icloudhospital.com
 *
 * 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 ChatUserModel
 */
export interface ChatUserModel {
    /**
     *
     * @type {string}
     * @memberof ChatUserModel
     */
    'id'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ChatUserModel
     */
    'nickname'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ChatUserModel
     */
    'profileUrl'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ChatUserModel
     */
    'accessToken'?: string | null;
    /**
     *
     * @type {number}
     * @memberof ChatUserModel
     */
    'isActive'?: number;
    /**
     *
     * @type {number}
     * @memberof ChatUserModel
     */
    'isOnline'?: number;
    /**
     *
     * @type {Array<string>}
     * @memberof ChatUserModel
     */
    'discoveryKeys'?: Array<string> | null;
    /**
     *
     * @type {Date}
     * @memberof ChatUserModel
     */
    'createdAt'?: Date | null;
    /**
     *
     * @type {Date}
     * @memberof ChatUserModel
     */
    'lastSeenAt'?: Date | null;
}
//# sourceMappingURL=chat-user-model.d.ts.map