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

com.qcloud.cos.model.ciModel.hls.CreateHLSPlayKeyResponse Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model.ciModel.hls;

import com.qcloud.cos.model.CiServiceResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;

@XStreamAlias("Response")
public class CreateHLSPlayKeyResponse extends CiServiceResult {
    /**
     *请求的唯一 ID
     */
    @XStreamAlias("RequestId")
    private String requestId;

    /**
     *保存播放密钥的容器
     */
    @XStreamAlias("PlayKeyList")
    private PlayKeyList playKeyList;

    public String getRequestId() { return requestId; }

    public void setRequestId(String requestId) { this.requestId = requestId; }

    public PlayKeyList getPlayKeyList() { return playKeyList; }

    public void setPlayKeyList(PlayKeyList playKeyList) { this.playKeyList = playKeyList; }

    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy