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

com.volcengine.model.livesaas.request.UpdateActivityViewPermissionAPIRequest Maven / Gradle / Ivy

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

import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

import java.util.List;
import java.util.Map;

@Data
public class UpdateActivityViewPermissionAPIRequest {
    @JSONField(name = "IsSubViewingRestrictionEnable")
    Boolean IsSubViewingRestrictionEnable;
    @JSONField(name = "ViewingRestriction")
    ViewingRestrictionAPI ViewingRestriction;
    @JSONField(name = "SubViewingRestriction")
    ViewingRestrictionAPI SubViewingRestriction;
    @JSONField(name = "ActivityId")
    Long ActivityId;

    @Data
    public static class ViewingRestrictionAPI {
        @JSONField(name = "ViewingAccountType")
        Integer ViewingAccountType;
        @JSONField(name = "ViewingRestrictionButtonTitle")
        String ViewingRestrictionButtonTitle;
        @JSONField(name = "CustomViewingRestriction")
        CustomViewingRestrictionAPI CustomViewingRestriction;
    }

    @Data
    public static class CustomViewingRestrictionAPI {
        @JSONField(name = "CustomApp")
        String CustomApp;
        @JSONField(name = "CustomUrl")
        String CustomUrl;
        @JSONField(name = "ErrorRedirectUrl")
        String ErrorRedirectUrl;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy