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

com.antgroup.antchain.openapi.ato.models.PagequeryInnerNoticeRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;

import com.aliyun.tea.*;

public class PagequeryInnerNoticeRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 商户租户id
    @NameInMap("tenant_id")
    @Validation(required = true)
    public String tenantId;

    // 分页
    @NameInMap("page_info")
    @Validation(required = true)
    public PageQuery pageInfo;

    // 是否未读
    @NameInMap("unread")
    public Boolean unread;

    public static PagequeryInnerNoticeRequest build(java.util.Map map) throws Exception {
        PagequeryInnerNoticeRequest self = new PagequeryInnerNoticeRequest();
        return TeaModel.build(map, self);
    }

    public PagequeryInnerNoticeRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public PagequeryInnerNoticeRequest setProductInstanceId(String productInstanceId) {
        this.productInstanceId = productInstanceId;
        return this;
    }
    public String getProductInstanceId() {
        return this.productInstanceId;
    }

    public PagequeryInnerNoticeRequest setTenantId(String tenantId) {
        this.tenantId = tenantId;
        return this;
    }
    public String getTenantId() {
        return this.tenantId;
    }

    public PagequeryInnerNoticeRequest setPageInfo(PageQuery pageInfo) {
        this.pageInfo = pageInfo;
        return this;
    }
    public PageQuery getPageInfo() {
        return this.pageInfo;
    }

    public PagequeryInnerNoticeRequest setUnread(Boolean unread) {
        this.unread = unread;
        return this;
    }
    public Boolean getUnread() {
        return this.unread;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy