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

com.byteplus.model.live.response.GeneratePlayURLResponse Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.model.live.response;

import com.alibaba.fastjson.annotation.JSONField;
import com.byteplus.model.response.ResponseMetadata;
import lombok.Data;

import java.util.ArrayList;
@Data
public class GeneratePlayURLResponse {
    @JSONField(name = "ResponseMetadata")
    ResponseMetadata responseMetadata;

    @JSONField(name = "Result")
    Result result;

    @Data
    public static class Result {
        @JSONField(name = "URLList")
        ArrayList urlList;
    }

    @Data
    public static class URLList {
        @JSONField(name = "URL")
        String url;
        @JSONField(name = "Type")
        String type;
        @JSONField(name = "CDN")
        String cdn;
        @JSONField(name = "Protocol")
        String protocol;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy