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

com.antgroup.antchain.openapi.riskplus.models.QueryRtopCompanyAlarmRequest Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;

import com.aliyun.tea.*;

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

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 数据的时间
    @NameInMap("data_time")
    @Validation(required = true)
    public String dataTime;

    // 当前是第几页
    @NameInMap("page_no")
    @Validation(required = true)
    public Long pageNo;

    // 每一页的记录条数
    @NameInMap("page_size")
    @Validation(required = true)
    public Long pageSize;

    // 用户属地
    @NameInMap("user_place")
    @Validation(required = true)
    public String userPlace;

    // 用户所在地类型
    @NameInMap("user_place_type")
    @Validation(required = true)
    public String userPlaceType;

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

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

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

    public QueryRtopCompanyAlarmRequest setDataTime(String dataTime) {
        this.dataTime = dataTime;
        return this;
    }
    public String getDataTime() {
        return this.dataTime;
    }

    public QueryRtopCompanyAlarmRequest setPageNo(Long pageNo) {
        this.pageNo = pageNo;
        return this;
    }
    public Long getPageNo() {
        return this.pageNo;
    }

    public QueryRtopCompanyAlarmRequest setPageSize(Long pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Long getPageSize() {
        return this.pageSize;
    }

    public QueryRtopCompanyAlarmRequest setUserPlace(String userPlace) {
        this.userPlace = userPlace;
        return this;
    }
    public String getUserPlace() {
        return this.userPlace;
    }

    public QueryRtopCompanyAlarmRequest setUserPlaceType(String userPlaceType) {
        this.userPlaceType = userPlaceType;
        return this;
    }
    public String getUserPlaceType() {
        return this.userPlaceType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy