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

com.antgroup.antchain.openapi.rms.models.XCalculationParameter 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 XCalculationParameter extends TeaModel {
    // x
    @NameInMap("expression")
    public String expression;

    // x
    @NameInMap("constant")
    public Boolean constant;

    public static XCalculationParameter build(java.util.Map map) throws Exception {
        XCalculationParameter self = new XCalculationParameter();
        return TeaModel.build(map, self);
    }

    public XCalculationParameter setExpression(String expression) {
        this.expression = expression;
        return this;
    }
    public String getExpression() {
        return this.expression;
    }

    public XCalculationParameter setConstant(Boolean constant) {
        this.constant = constant;
        return this;
    }
    public Boolean getConstant() {
        return this.constant;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy