/**
 * VRt.Account [AC]
 *
 * The version of the OpenAPI document: 7.16.2673
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { DateStatisticsAccount } from './dateStatistics';
/**
 * Usage service statistics by the specific user.
 */
export interface UserStatisticsAccount {
    [key: string]: any | any;
    /**
     * Unique username for login.
     */
    username: string;
    /**
     * Statistics list for each day for the specified user.
     */
    dates: Array<DateStatisticsAccount>;
}
