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

eleme.openapi.sdk.media.manage.SnapshotRequest Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.media.manage;

/**
 * Created by huamulou on 15/10/23.
 */
public class SnapshotRequest {
    private GlobalFileResource input;                               //输入的文件, 必须
    private GlobalFileResource output;                              //输出的文件, 必须
    private String time;                                            //截图的时间点,必须
    private String notifyUrl;                                       //任务完成之后通知的url, 非必须

    public GlobalFileResource getInput() {
        return input;
    }

    public void setInput(GlobalFileResource input) {
        this.input = input;
    }

    public GlobalFileResource getOutput() {
        return output;
    }

    public void setOutput(GlobalFileResource output) {
        this.output = output;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }

    public String getNotifyUrl() {
        return notifyUrl;
    }

    public void setNotifyUrl(String notifyUrl) {
        this.notifyUrl = notifyUrl;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy