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

com.antgroup.antchain.openapi.deps.models.OpsTargetLegalStates Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;

import com.aliyun.tea.*;

public class OpsTargetLegalStates extends TeaModel {
    // 目标类型
    @NameInMap("target_type")
    @Validation(required = true)
    public String targetType;

    // 合法状态
    @NameInMap("states")
    @Validation(required = true)
    public java.util.List states;

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

    public OpsTargetLegalStates setTargetType(String targetType) {
        this.targetType = targetType;
        return this;
    }
    public String getTargetType() {
        return this.targetType;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy