package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;

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

    @SerializedName("file")
    private String file;

    @SerializedName("force_update")
    private Integer forceUpdate;

    @SerializedName("update_content")
    private String updateContent;

    @SerializedName("version")
    private String version;

    public String getFile() {
        return this.file;
    }

    public Integer getForceUpdate() {
        return this.forceUpdate;
    }

    public String getUpdateContent() {
        return this.updateContent;
    }

    public String getVersion() {
        return this.version;
    }

    public void setFile(String str) {
        this.file = str;
    }

    public void setForceUpdate(Integer num) {
        this.forceUpdate = num;
    }

    public void setUpdateContent(String str) {
        this.updateContent = str;
    }

    public void setVersion(String str) {
        this.version = str;
    }
}
