/**
 * @class
 * @description This class connect to cdn the cdb balancer api and hepls to get data
 * @exports PingTimeBean
 */
export default class StatsBean {
    private profile_name;
    private provider;
    private downloaded_bytes;
    private downloaded_chunks;
    private errors;
    private time;
    private max_bandwidth;
    private min_bandwidth;
    private banned;
    private unbanned;
    private avg_ping_time;
    private min_ping_time;
    private max_ping_time;
    private is_banned;
    private is_active;
    private resource;
    private title;
    constructor(profile_name: any, provider: any, downloaded_bytes: any, downloaded_chunks: any, errors: any, time: any, max_bandwidth: any, min_bandwidth: any, banned: any, unbanned: any, avg_ping_time: any, min_ping_time: any, max_ping_time: any, is_banned: any, is_active: any, resource: any, title: any);
}
