package xyz.stream.download.info;

import java.io.Serializable;
import xyz.stream.download.utils.DebugUtils;

/* JADX INFO: loaded from: classes3.dex */
public class FileInfo implements Serializable {
    private long downloadLocation;
    private int downloadStatus = 45;
    private String downloadUrl;
    private String filePath;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    private String f36092id;
    private long size;

    public long getDownloadLocation() {
        return this.downloadLocation;
    }

    public int getDownloadStatus() {
        return this.downloadStatus;
    }

    public String getDownloadUrl() {
        return this.downloadUrl;
    }

    public String getFilePath() {
        return this.filePath;
    }

    public String getId() {
        return this.f36092id;
    }

    public long getSize() {
        return this.size;
    }

    public void setDownloadLocation(long j10) {
        this.downloadLocation = j10;
    }

    public void setDownloadStatus(int i10) {
        this.downloadStatus = i10;
    }

    public void setDownloadUrl(String str) {
        this.downloadUrl = str;
    }

    public void setFilePath(String str) {
        this.filePath = str;
    }

    public void setId(String str) {
        this.f36092id = str;
    }

    public void setSize(long j10) {
        this.size = j10;
    }

    public String toString() {
        return "FileInfo{id='" + this.f36092id + "', downloadUrl='" + this.downloadUrl + "', filePath='" + this.filePath + "', size=" + this.size + ", downloadLocation=" + this.downloadLocation + ", downloadStatus=" + DebugUtils.getStatusDesc(this.downloadStatus) + '}';
    }
}
