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.88
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;

    /**
     * 

This parameter is required.

* * example: *

100

*/ @NameInMap("maxResults") public Long maxResults; /** * example: *

0

*/ @NameInMap("nextToken") public Long nextToken; /** *

This parameter is required.

*/ @NameInMap("staffId") public String staffId; @NameInMap("startTime") public Long startTime; @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 - 2025 Weber Informatics LLC | Privacy Policy