com.antgroup.antchain.openapi.demo.models.InitPack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demo Show documentation
Show all versions of openapi-demo Show documentation
Ant Chain DEMO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class InitPack extends TeaModel {
// 返回接收到请求的当前时间
@NameInMap("time")
@Validation(required = true)
public String time;
// 操作人
@NameInMap("operator")
@Validation(required = true)
public String operator;
// 请求编号
@NameInMap("count")
@Validation(required = true)
public Long count;
public static InitPack build(java.util.Map map) throws Exception {
InitPack self = new InitPack();
return TeaModel.build(map, self);
}
public InitPack setTime(String time) {
this.time = time;
return this;
}
public String getTime() {
return this.time;
}
public InitPack setOperator(String operator) {
this.operator = operator;
return this;
}
public String getOperator() {
return this.operator;
}
public InitPack setCount(Long count) {
this.count = count;
return this;
}
public Long getCount() {
return this.count;
}
}