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

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

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


import java.io.Serializable;

/**
 * @author hyzhou.zhy. 2015/06/04.
 * sample opetation: avEncode/encodePreset/video-generic-AVC-360p-16_9
 * name:  avEncode
 * key:   encodePreset
 * value: video-generic-AVC-360p-16_9
 */
public class AvEncodeOperation implements Serializable {

    private static final long serialVersionUID = -8376959977475115678L;

    private String name;
    private String key;
    private String value;
    private GlobalFileResource output;

    public AvEncodeOperation() {

    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public GlobalFileResource getOutput() {
        return output;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy