package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;
import com.pichillilorenzo.flutter_inappwebview_android.credential_database.URLProtectionSpaceContract;
import java.util.List;

/* JADX INFO: loaded from: classes3.dex */
public class SessionEntity {

    @SerializedName("buffer_bytes")
    private Integer bufferBytes;

    @SerializedName("nodes")
    private List<NodesEntity> nodes;

    @SerializedName("recv_bytes")
    private Integer recvBytes;

    @SerializedName("req_sched_ms")
    private Integer reqSchedMs;

    @SerializedName("sent_bytes")
    private Integer sentBytes;

    public static class NodesEntity {

        @SerializedName("age_sec")
        private Double ageSec;

        @SerializedName("connect_ms")
        private Integer connectMs;

        @SerializedName("cur_speed_bitps")
        private Integer curSpeedBitps;

        @SerializedName("node_id")
        private String nodeId;

        @SerializedName(URLProtectionSpaceContract.FeedEntry.COLUMN_NAME_PROTOCOL)
        private String protocol;

        @SerializedName("recv_bytes")
        private Integer recvBytes;

        @SerializedName("status")
        private String status;

        @SerializedName("total_speed_bitps")
        private Integer totalSpeedBitps;

        @SerializedName("type")
        private String type;

        public Double getAgeSec() {
            return this.ageSec;
        }

        public Integer getConnectMs() {
            return this.connectMs;
        }

        public Integer getCurSpeedBitps() {
            return this.curSpeedBitps;
        }

        public String getNodeId() {
            return this.nodeId;
        }

        public String getProtocol() {
            return this.protocol;
        }

        public Integer getRecvBytes() {
            return this.recvBytes;
        }

        public String getStatus() {
            return this.status;
        }

        public Integer getTotalSpeedBitps() {
            return this.totalSpeedBitps;
        }

        public String getType() {
            return this.type;
        }

        public void setAgeSec(Double d10) {
            this.ageSec = d10;
        }

        public void setConnectMs(Integer num) {
            this.connectMs = num;
        }

        public void setCurSpeedBitps(Integer num) {
            this.curSpeedBitps = num;
        }

        public void setNodeId(String str) {
            this.nodeId = str;
        }

        public void setProtocol(String str) {
            this.protocol = str;
        }

        public void setRecvBytes(Integer num) {
            this.recvBytes = num;
        }

        public void setStatus(String str) {
            this.status = str;
        }

        public void setTotalSpeedBitps(Integer num) {
            this.totalSpeedBitps = num;
        }

        public void setType(String str) {
            this.type = str;
        }
    }

    public Integer getBufferBytes() {
        return this.bufferBytes;
    }

    public List<NodesEntity> getNodes() {
        return this.nodes;
    }

    public Integer getRecvBytes() {
        return this.recvBytes;
    }

    public Integer getReqSchedMs() {
        return this.reqSchedMs;
    }

    public Integer getSentBytes() {
        return this.sentBytes;
    }

    public void setBufferBytes(Integer num) {
        this.bufferBytes = num;
    }

    public void setNodes(List<NodesEntity> list) {
        this.nodes = list;
    }

    public void setRecvBytes(Integer num) {
        this.recvBytes = num;
    }

    public void setReqSchedMs(Integer num) {
        this.reqSchedMs = num;
    }

    public void setSentBytes(Integer num) {
        this.sentBytes = num;
    }
}
