package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;

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

    @SerializedName("account")
    private String account;

    @SerializedName("expire")
    private String expire;

    @SerializedName("is_new")
    private Boolean isNew;

    @SerializedName("success")
    private Boolean success;

    @SerializedName("token")
    private String token;

    @SerializedName("unid")
    private String unid;

    public String getAccount() {
        return this.account;
    }

    public String getExpire() {
        return this.expire;
    }

    public Boolean getIsNew() {
        return this.isNew;
    }

    public Boolean getSuccess() {
        return this.success;
    }

    public String getToken() {
        return this.token;
    }

    public String getUnid() {
        return this.unid;
    }

    public void setAccount(String str) {
        this.account = str;
    }

    public void setExpire(String str) {
        this.expire = str;
    }

    public void setIsNew(Boolean bool) {
        this.isNew = bool;
    }

    public void setSuccess(Boolean bool) {
        this.success = bool;
    }

    public void setToken(String str) {
        this.token = str;
    }

    public void setUnid(String str) {
        this.unid = str;
    }
}
