com.antgroup.antchain.openapi.rms.models.XTranslate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class XTranslate extends TeaModel {
//
@NameInMap("default_value")
public String defaultValue;
//
@NameInMap("include_not_matched")
public Boolean includeNotMatched;
//
@NameInMap("translate_expressions")
public java.util.List translateExpressions;
public static XTranslate build(java.util.Map map) throws Exception {
XTranslate self = new XTranslate();
return TeaModel.build(map, self);
}
public XTranslate setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
return this;
}
public String getDefaultValue() {
return this.defaultValue;
}
public XTranslate setIncludeNotMatched(Boolean includeNotMatched) {
this.includeNotMatched = includeNotMatched;
return this;
}
public Boolean getIncludeNotMatched() {
return this.includeNotMatched;
}
public XTranslate setTranslateExpressions(java.util.List translateExpressions) {
this.translateExpressions = translateExpressions;
return this;
}
public java.util.List getTranslateExpressions() {
return this.translateExpressions;
}
}