com.volcengine.model.livesaas.response.GetCustomViewingRestrictionInfoAPIResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.livesaas.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import com.volcengine.model.response.ResponseMetadata;
import java.util.List;
@Data
public class GetCustomViewingRestrictionInfoAPIResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
GetCustomViewingRestrictionInfoAPIResponseBody result;
@Data
public static class GetCustomViewingRestrictionInfoAPIResponseBody {
@JSONField(name = "ActivityId")
Long ActivityId;
@JSONField(name = "CustomViewingRestriction")
List CustomViewingRestriction;
@JSONField(name = "MainViewingRestrictionButtonTitle")
String MainViewingRestrictionButtonTitle;
@JSONField(name = "SubViewingRestrictionButtonTitle")
String SubViewingRestrictionButtonTitle;
}
@Data
public static class CustomViewingRestriction {
@JSONField(name = "CustomApp")
String CustomApp;
@JSONField(name = "CustomUrl")
String CustomUrl;
@JSONField(name = "SecretKey")
String SecretKey;
@JSONField(name = "ViewingRestrictionType")
Integer ViewingRestrictionType;
@JSONField(name = "ErrorRedirectUrl")
String ErrorRedirectUrl;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy