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

com.antgroup.antchain.openapi.rms.models.StackExpression 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 StackExpression extends TeaModel {
    // states
    @NameInMap("states")
    @Validation(required = true)
    public java.util.List states;

    // andor
    @NameInMap("andor")
    @Validation(required = true)
    public Boolean andor;

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

    public StackExpression setStates(java.util.List states) {
        this.states = states;
        return this;
    }
    public java.util.List getStates() {
        return this.states;
    }

    public StackExpression setAndor(Boolean andor) {
        this.andor = andor;
        return this;
    }
    public Boolean getAndor() {
        return this.andor;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy