com.antgroup.antchain.openapi.deps.models.StateCount 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 StateCount extends TeaModel {
// state
@NameInMap("state")
@Validation(required = true)
public String state;
// count
@NameInMap("count")
@Validation(required = true)
public Long count;
public static StateCount build(java.util.Map map) throws Exception {
StateCount self = new StateCount();
return TeaModel.build(map, self);
}
public StateCount setState(String state) {
this.state = state;
return this;
}
public String getState() {
return this.state;
}
public StateCount setCount(Long count) {
this.count = count;
return this;
}
public Long getCount() {
return this.count;
}
}