com.aliyun.dingtalktrajectory_1_0.models.QueryPageTraceDataResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalktrajectory_1_0.models;
import com.aliyun.tea.*;
public class QueryPageTraceDataResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* This parameter is required.
*/
@NameInMap("list")
public java.util.List list;
/**
* This parameter is required.
*
* example:
* 100
*/
@NameInMap("nextToken")
public Long nextToken;
public static QueryPageTraceDataResponseBody build(java.util.Map map) throws Exception {
QueryPageTraceDataResponseBody self = new QueryPageTraceDataResponseBody();
return TeaModel.build(map, self);
}
public QueryPageTraceDataResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public QueryPageTraceDataResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public QueryPageTraceDataResponseBody setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public static class QueryPageTraceDataResponseBodyListCoordinates extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("latitude")
public Float latitude;
/**
* This parameter is required.
*/
@NameInMap("longitude")
public Float longitude;
public static QueryPageTraceDataResponseBodyListCoordinates build(java.util.Map map) throws Exception {
QueryPageTraceDataResponseBodyListCoordinates self = new QueryPageTraceDataResponseBodyListCoordinates();
return TeaModel.build(map, self);
}
public QueryPageTraceDataResponseBodyListCoordinates setLatitude(Float latitude) {
this.latitude = latitude;
return this;
}
public Float getLatitude() {
return this.latitude;
}
public QueryPageTraceDataResponseBodyListCoordinates setLongitude(Float longitude) {
this.longitude = longitude;
return this;
}
public Float getLongitude() {
return this.longitude;
}
}
public static class QueryPageTraceDataResponseBodyList extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("coordinates")
public QueryPageTraceDataResponseBodyListCoordinates coordinates;
/**
* This parameter is required.
*/
@NameInMap("gmtLocation")
public Long gmtLocation;
/**
* This parameter is required.
*/
@NameInMap("gmtUpload")
public Long gmtUpload;
public static QueryPageTraceDataResponseBodyList build(java.util.Map map) throws Exception {
QueryPageTraceDataResponseBodyList self = new QueryPageTraceDataResponseBodyList();
return TeaModel.build(map, self);
}
public QueryPageTraceDataResponseBodyList setCoordinates(QueryPageTraceDataResponseBodyListCoordinates coordinates) {
this.coordinates = coordinates;
return this;
}
public QueryPageTraceDataResponseBodyListCoordinates getCoordinates() {
return this.coordinates;
}
public QueryPageTraceDataResponseBodyList setGmtLocation(Long gmtLocation) {
this.gmtLocation = gmtLocation;
return this;
}
public Long getGmtLocation() {
return this.gmtLocation;
}
public QueryPageTraceDataResponseBodyList setGmtUpload(Long gmtUpload) {
this.gmtUpload = gmtUpload;
return this;
}
public Long getGmtUpload() {
return this.gmtUpload;
}
}
}