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

eleme.openapi.sdk.api.entity.content.OVideoInfo Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.content;

import eleme.openapi.sdk.api.enumeration.content.*;
import eleme.openapi.sdk.api.entity.content.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class OVideoInfo{

    /**
     * efs所用key,由shopId和efs认证信息中的有效期生成
     */
    private String videoKey;
    public String getVideoKey() {
        return videoKey;
    }
    public void setVideoKey(String videoKey) {
        this.videoKey = videoKey;
    }
    
    /**
     * 视频versionId,视频上传后由efs返回
     */
    private String versionId;
    public String getVersionId() {
        return versionId;
    }
    public void setVersionId(String versionId) {
        this.versionId = versionId;
    }
    
    /**
     * 视频大小byte
     */
    private Long sizeInByte;
    public Long getSizeInByte() {
        return sizeInByte;
    }
    public void setSizeInByte(Long sizeInByte) {
        this.sizeInByte = sizeInByte;
    }
    
    /**
     * 视频标题
     */
    private String title;
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    
    /**
     * 视频描述
     */
    private String description;
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy