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

com.volcengine.model.livesaas.response.GetAudienceGroupConfigResponse 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 GetAudienceGroupConfigResponse {
    @JSONField(name = "ResponseMetadata")
    ResponseMetadata responseMetadata;
    @JSONField(name = "Result")
    GetAudienceGroupConfigBody result;

    @Data
    public static class AudienceGroupBasicInfoModel {
        @JSONField(name = "GroupId")
        Long GroupId;
        @JSONField(name = "GroupName")
        String GroupName;
        @JSONField(name = "TotalCount")
        Long TotalCount;
    }

    @Data
    public static class GetAudienceGroupConfigBody {
        @JSONField(name = "GroupType")
        Integer GroupType;
        @JSONField(name = "GroupEnableStatus")
        Integer GroupEnableStatus;
        @JSONField(name = "ViewPageShowGroupName")
        Integer ViewPageShowGroupName;
        @JSONField(name = "CannotWatchLiveWhenNotInGroup")
        Integer CannotWatchLiveWhenNotInGroup;
        @JSONField(name = "AudienceGroupsBasicInfo")
        List AudienceGroupsBasicInfo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy