com.antgroup.antchain.openapi.deps.models.OpsTargetLegalStates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// 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;
}
}