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

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

There is a newer version: 2.1.67
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 QueryCollectingTraceTaskResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("list") public java.util.List list; public static QueryCollectingTraceTaskResponseBody build(java.util.Map map) throws Exception { QueryCollectingTraceTaskResponseBody self = new QueryCollectingTraceTaskResponseBody(); return TeaModel.build(map, self); } public QueryCollectingTraceTaskResponseBody setList(java.util.List list) { this.list = list; return this; } public java.util.List getList() { return this.list; } public static class QueryCollectingTraceTaskResponseBodyList extends TeaModel { /** *

This parameter is required.

* * example: *

ffsfsdf

*/ @NameInMap("appTraceId") public String appTraceId; /** *

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

* * example: *

I01231231ads1

*/ @NameInMap("userId") public String userId; public static QueryCollectingTraceTaskResponseBodyList build(java.util.Map map) throws Exception { QueryCollectingTraceTaskResponseBodyList self = new QueryCollectingTraceTaskResponseBodyList(); return TeaModel.build(map, self); } public QueryCollectingTraceTaskResponseBodyList setAppTraceId(String appTraceId) { this.appTraceId = appTraceId; return this; } public String getAppTraceId() { return this.appTraceId; } public QueryCollectingTraceTaskResponseBodyList setGeoCollectPeriod(Long geoCollectPeriod) { this.geoCollectPeriod = geoCollectPeriod; return this; } public Long getGeoCollectPeriod() { return this.geoCollectPeriod; } public QueryCollectingTraceTaskResponseBodyList setGeoReportPeriod(Long geoReportPeriod) { this.geoReportPeriod = geoReportPeriod; return this; } public Long getGeoReportPeriod() { return this.geoReportPeriod; } public QueryCollectingTraceTaskResponseBodyList setGeoReportStatus(Long geoReportStatus) { this.geoReportStatus = geoReportStatus; return this; } public Long getGeoReportStatus() { return this.geoReportStatus; } public QueryCollectingTraceTaskResponseBodyList setReportEndTime(Long reportEndTime) { this.reportEndTime = reportEndTime; return this; } public Long getReportEndTime() { return this.reportEndTime; } public QueryCollectingTraceTaskResponseBodyList setReportStartTime(Long reportStartTime) { this.reportStartTime = reportStartTime; return this; } public Long getReportStartTime() { return this.reportStartTime; } public QueryCollectingTraceTaskResponseBodyList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy