All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.tos.model.object.DownloadFileInfo Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package com.volcengine.tos.model.object;

public class DownloadFileInfo {
    private String filePath;
    private String tempFilePath;

    public String getFilePath() {
        return filePath;
    }

    public DownloadFileInfo setFilePath(String filePath) {
        this.filePath = filePath;
        return this;
    }

    public String getTempFilePath() {
        return tempFilePath;
    }

    public DownloadFileInfo setTempFilePath(String tempFilePath) {
        this.tempFilePath = tempFilePath;
        return this;
    }

    @Override
    public String toString() {
        return "DownloadFileInfo{" +
                "filePath='" + filePath + '\'' +
                ", tempFilePath='" + tempFilePath + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy