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

com.antgroup.antchain.openapi.rms.models.QueryRmsNotifyhistoryRequest Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy