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

com.aliyun.dingtalktrajectory_1_0.models.QueryPageTraceDataRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalktrajectory_1_0.models;

import com.aliyun.tea.*;

public class QueryPageTraceDataRequest extends TeaModel {
    // 终止时间
    @NameInMap("endTime")
    public Long endTime;

    // 查询数量
    @NameInMap("maxResults")
    public Long maxResults;

    // 起始位置
    @NameInMap("nextToken")
    public Long nextToken;

    // 员工ID
    @NameInMap("staffId")
    public String staffId;

    // 开始时间
    @NameInMap("startTime")
    public Long startTime;

    // traceId
    @NameInMap("traceId")
    public String traceId;

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

    public QueryPageTraceDataRequest setEndTime(Long endTime) {
        this.endTime = endTime;
        return this;
    }
    public Long getEndTime() {
        return this.endTime;
    }

    public QueryPageTraceDataRequest setMaxResults(Long maxResults) {
        this.maxResults = maxResults;
        return this;
    }
    public Long getMaxResults() {
        return this.maxResults;
    }

    public QueryPageTraceDataRequest setNextToken(Long nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public Long getNextToken() {
        return this.nextToken;
    }

    public QueryPageTraceDataRequest setStaffId(String staffId) {
        this.staffId = staffId;
        return this;
    }
    public String getStaffId() {
        return this.staffId;
    }

    public QueryPageTraceDataRequest setStartTime(Long startTime) {
        this.startTime = startTime;
        return this;
    }
    public Long getStartTime() {
        return this.startTime;
    }

    public QueryPageTraceDataRequest setTraceId(String traceId) {
        this.traceId = traceId;
        return this;
    }
    public String getTraceId() {
        return this.traceId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy