com.antgroup.antchain.openapi.rms.models.QueryRmsNotifyhistoryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
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 QueryRmsNotifyhistoryRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// from
@NameInMap("from")
@Validation(required = true)
public Long from;
// login_name
@NameInMap("login_name")
@Validation(required = true)
public String loginName;
// to
@NameInMap("to")
@Validation(required = true)
public Long to;
public static QueryRmsNotifyhistoryRequest build(java.util.Map map) throws Exception {
QueryRmsNotifyhistoryRequest self = new QueryRmsNotifyhistoryRequest();
return TeaModel.build(map, self);
}
public QueryRmsNotifyhistoryRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryRmsNotifyhistoryRequest setFrom(Long from) {
this.from = from;
return this;
}
public Long getFrom() {
return this.from;
}
public QueryRmsNotifyhistoryRequest setLoginName(String loginName) {
this.loginName = loginName;
return this;
}
public String getLoginName() {
return this.loginName;
}
public QueryRmsNotifyhistoryRequest setTo(Long to) {
this.to = to;
return this;
}
public Long getTo() {
return this.to;
}
}