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

com.volcengine.model.livesaas.response.ListLiveChannelConfigResponse Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.livesaas.response;

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

import java.util.List;

@Data
public class ListLiveChannelConfigResponse {
    @JSONField(name = "ResponseMetadata")
    ResponseMetadata responseMetadata;
    @JSONField(name = "Result")
    List result;

    @Data
    public static class ListLiveChannelConfigResponseBody {
        @JSONField(name = "ActivityId")
        Long ActivityId;

        @JSONField(name = "LineId")
        Long LineId;

        @JSONField(name = "LineIndex")
        Integer LineIndex;

        @JSONField(name = "LineName")
        String LineName;

        @JSONField(name = "CoverImage")
        String CoverImage;

        @JSONField(name = "Resolution")
        List Resolution;

        @JSONField(name = "PCDefaultResolution")
        String PCDefaultResolution;

        @JSONField(name = "MobileDefaultResolution")
        String MobileDefaultResolution;

        @JSONField(name = "MainBackupType")
        Integer MainBackupType;

        @JSONField(name = "LlsType")
        Integer LlsType;

        @JSONField(name = "TimeShiftType")
        Integer TimeShiftType;

        @JSONField(name = "LineLanguage")
        String LineLanguage;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy