package xyz.stream.api.entity;

/* JADX INFO: loaded from: classes3.dex */
public class WalletEntity {
    private double balance;
    private int code;
    private String msg;
    private double points;

    public double getBalance() {
        return this.balance;
    }

    public int getCode() {
        return this.code;
    }

    public String getMsg() {
        return this.msg;
    }

    public double getPoints() {
        return this.points;
    }

    public void setBalance(double d10) {
        this.balance = d10;
    }

    public void setCode(int i10) {
        this.code = i10;
    }

    public void setMsg(String str) {
        this.msg = str;
    }

    public void setPoints(double d10) {
        this.points = d10;
    }
}
