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

com.antgroup.antchain.openapi.rms.models.XTranslate Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy