com.byteplus.model.live.v20230101.UpdateRelaySourceRewriteBodyRewriteRule Maven / Gradle / Ivy
package com.byteplus.model.live.v20230101;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* UpdateRelaySourceRewriteBodyRewriteRule
*/
@lombok.Data
public final class UpdateRelaySourceRewriteBodyRewriteRule {
/**
* 功能开关。- true: 开 - false: 关
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Enable")
private Boolean enable;
/**
* 改写规则列表
*/
@com.alibaba.fastjson.annotation.JSONField(name = "RewriteRuleList")
private List rewriteRuleList;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}