index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListCorpTrackDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListCorpTrackDetailRequest extends RpcAcsRequest<ListCorpTrackDetailResponse> { private String corpId; private String endTime; private String startTime; private String pageNumber; private String pageSize; private String dataSourceId; private String personId; public ListCorpTrackDetailRequest() { super("CDRS", "2020-11-01", "ListCorpTrackDetail"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber); } } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize); } } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; if(dataSourceId != null){ putBodyParameter("DataSourceId", dataSourceId); } } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; if(personId != null){ putBodyParameter("PersonId", personId); } } @Override public Class<ListCorpTrackDetailResponse> getResponseClass() { return ListCorpTrackDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListCorpTrackDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListCorpTrackDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCorpTrackDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<DataItem> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String date; private String lastTime; private String startTime; private String endSourceImage; private String deviceId; private String startTargetImage; private String groupId; private String personId; private String startSourceImage; private String corpId; private String endTargetImage; private String sourceUrl; private String targetUrl; public String getDate() { return this.date; } public void setDate(String date) { this.date = date; } public String getLastTime() { return this.lastTime; } public void setLastTime(String lastTime) { this.lastTime = lastTime; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndSourceImage() { return this.endSourceImage; } public void setEndSourceImage(String endSourceImage) { this.endSourceImage = endSourceImage; } public String getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; } public String getStartTargetImage() { return this.startTargetImage; } public void setStartTargetImage(String startTargetImage) { this.startTargetImage = startTargetImage; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getStartSourceImage() { return this.startSourceImage; } public void setStartSourceImage(String startSourceImage) { this.startSourceImage = startSourceImage; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getEndTargetImage() { return this.endTargetImage; } public void setEndTargetImage(String endTargetImage) { this.endTargetImage = endTargetImage; } public String getSourceUrl() { return this.sourceUrl; } public void setSourceUrl(String sourceUrl) { this.sourceUrl = sourceUrl; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } } @Override public ListCorpTrackDetailResponse getInstance(UnmarshallerContext context) { return ListCorpTrackDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDataStatisticsByDayRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDataStatisticsByDayRequest extends RpcAcsRequest<ListDataStatisticsByDayResponse> { private String corpId; private String endTime; private String startTime; public ListDataStatisticsByDayRequest() { super("CDRS", "2020-11-01", "ListDataStatisticsByDay"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } @Override public Class<ListDataStatisticsByDayResponse> getResponseClass() { return ListDataStatisticsByDayResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDataStatisticsByDayResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListDataStatisticsByDayResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDataStatisticsByDayResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String date; private String corpId; private Integer faceNumber; private Integer bodyNumber; private Integer motorNumber; private Integer nonMotorNumber; private Integer totalNumber; public String getDate() { return this.date; } public void setDate(String date) { this.date = date; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public Integer getFaceNumber() { return this.faceNumber; } public void setFaceNumber(Integer faceNumber) { this.faceNumber = faceNumber; } public Integer getBodyNumber() { return this.bodyNumber; } public void setBodyNumber(Integer bodyNumber) { this.bodyNumber = bodyNumber; } public Integer getMotorNumber() { return this.motorNumber; } public void setMotorNumber(Integer motorNumber) { this.motorNumber = motorNumber; } public Integer getNonMotorNumber() { return this.nonMotorNumber; } public void setNonMotorNumber(Integer nonMotorNumber) { this.nonMotorNumber = nonMotorNumber; } public Integer getTotalNumber() { return this.totalNumber; } public void setTotalNumber(Integer totalNumber) { this.totalNumber = totalNumber; } } @Override public ListDataStatisticsByDayResponse getInstance(UnmarshallerContext context) { return ListDataStatisticsByDayResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDataStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDataStatisticsRequest extends RpcAcsRequest<ListDataStatisticsResponse> { private String schema; private String backCategory; public ListDataStatisticsRequest() { super("CDRS", "2020-11-01", "ListDataStatistics"); setMethod(MethodType.POST); } public String getSchema() { return this.schema; } public void setSchema(String schema) { this.schema = schema; if(schema != null){ putBodyParameter("Schema", schema); } } public String getBackCategory() { return this.backCategory; } public void setBackCategory(String backCategory) { this.backCategory = backCategory; if(backCategory != null){ putBodyParameter("BackCategory", backCategory); } } @Override public Class<ListDataStatisticsResponse> getResponseClass() { return ListDataStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDataStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListDataStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDataStatisticsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String corpId; private String number; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getNumber() { return this.number; } public void setNumber(String number) { this.number = number; } } @Override public ListDataStatisticsResponse getInstance(UnmarshallerContext context) { return ListDataStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDeviceDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDeviceDetailRequest extends RpcAcsRequest<ListDeviceDetailResponse> { private String corpId; private Long pageNumber; private String dataSourceId; private Long pageSize; public ListDeviceDetailRequest() { super("CDRS", "2020-11-01", "ListDeviceDetail"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; if(dataSourceId != null){ putBodyParameter("DataSourceId", dataSourceId); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } @Override public Class<ListDeviceDetailResponse> getResponseClass() { return ListDeviceDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDeviceDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListDeviceDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDeviceDetailResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String dataSourceId; private String corpId; private String dataSourceName; private String dataSourcePoi; private String nearPoi; private String latitude; private String longitude; public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getDataSourceName() { return this.dataSourceName; } public void setDataSourceName(String dataSourceName) { this.dataSourceName = dataSourceName; } public String getDataSourcePoi() { return this.dataSourcePoi; } public void setDataSourcePoi(String dataSourcePoi) { this.dataSourcePoi = dataSourcePoi; } public String getNearPoi() { return this.nearPoi; } public void setNearPoi(String nearPoi) { this.nearPoi = nearPoi; } public String getLatitude() { return this.latitude; } public void setLatitude(String latitude) { this.latitude = latitude; } public String getLongitude() { return this.longitude; } public void setLongitude(String longitude) { this.longitude = longitude; } } @Override public ListDeviceDetailResponse getInstance(UnmarshallerContext context) { return ListDeviceDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDeviceGenderStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDeviceGenderStatisticsRequest extends RpcAcsRequest<ListDeviceGenderStatisticsResponse> { private String corpId; private String endTime; private String startTime; private String dataSourceId; public ListDeviceGenderStatisticsRequest() { super("CDRS", "2020-11-01", "ListDeviceGenderStatistics"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; if(dataSourceId != null){ putBodyParameter("DataSourceId", dataSourceId); } } @Override public Class<ListDeviceGenderStatisticsResponse> getResponseClass() { return ListDeviceGenderStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDeviceGenderStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListDeviceGenderStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDeviceGenderStatisticsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String dataSourceId; private String gender; private String number; public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public String getGender() { return this.gender; } public void setGender(String gender) { this.gender = gender; } public String getNumber() { return this.number; } public void setNumber(String number) { this.number = number; } } @Override public ListDeviceGenderStatisticsResponse getInstance(UnmarshallerContext context) { return ListDeviceGenderStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDevicePersonRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDevicePersonRequest extends RpcAcsRequest<ListDevicePersonResponse> { private String statisticsType; private String corpId; private String endTime; private String startTime; private Long pageNumber; private String dataSourceId; private Long pageSize; public ListDevicePersonRequest() { super("CDRS", "2020-11-01", "ListDevicePerson"); setMethod(MethodType.POST); } public String getStatisticsType() { return this.statisticsType; } public void setStatisticsType(String statisticsType) { this.statisticsType = statisticsType; if(statisticsType != null){ putBodyParameter("StatisticsType", statisticsType); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; if(dataSourceId != null){ putBodyParameter("DataSourceId", dataSourceId); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } @Override public Class<ListDevicePersonResponse> getResponseClass() { return ListDevicePersonResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDevicePersonResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListDevicePersonResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDevicePersonResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String personId; private String dataSourceId; private String gender; private String freqNum; private String targetPicUrlPath; public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public String getGender() { return this.gender; } public void setGender(String gender) { this.gender = gender; } public String getFreqNum() { return this.freqNum; } public void setFreqNum(String freqNum) { this.freqNum = freqNum; } public String getTargetPicUrlPath() { return this.targetPicUrlPath; } public void setTargetPicUrlPath(String targetPicUrlPath) { this.targetPicUrlPath = targetPicUrlPath; } } @Override public ListDevicePersonResponse getInstance(UnmarshallerContext context) { return ListDevicePersonResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDevicePersonStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDevicePersonStatisticsRequest extends RpcAcsRequest<ListDevicePersonStatisticsResponse> { private String statisticsType; private String corpId; private String endTime; private String startTime; private String dataSourceId; public ListDevicePersonStatisticsRequest() { super("CDRS", "2020-11-01", "ListDevicePersonStatistics"); setMethod(MethodType.POST); } public String getStatisticsType() { return this.statisticsType; } public void setStatisticsType(String statisticsType) { this.statisticsType = statisticsType; if(statisticsType != null){ putBodyParameter("StatisticsType", statisticsType); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; if(dataSourceId != null){ putBodyParameter("DataSourceId", dataSourceId); } } @Override public Class<ListDevicePersonStatisticsResponse> getResponseClass() { return ListDevicePersonStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDevicePersonStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListDevicePersonStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDevicePersonStatisticsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String dataSourceId; private String shotTime; private String number; public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public String getShotTime() { return this.shotTime; } public void setShotTime(String shotTime) { this.shotTime = shotTime; } public String getNumber() { return this.number; } public void setNumber(String number) { this.number = number; } } @Override public ListDevicePersonStatisticsResponse getInstance(UnmarshallerContext context) { return ListDevicePersonStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDeviceRelationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDeviceRelationRequest extends RpcAcsRequest<ListDeviceRelationResponse> { private String deviceId; public ListDeviceRelationRequest() { super("CDRS", "2020-11-01", "ListDeviceRelation"); setMethod(MethodType.POST); } public String getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; if(deviceId != null){ putBodyParameter("DeviceId", deviceId); } } @Override public Class<ListDeviceRelationResponse> getResponseClass() { return ListDeviceRelationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListDeviceRelationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListDeviceRelationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDeviceRelationResponse extends AcsResponse { private String requestId; private String code; private String message; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String corpId; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } } @Override public ListDeviceRelationResponse getInstance(UnmarshallerContext context) { return ListDeviceRelationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListMapRouteDetailsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListMapRouteDetailsRequest extends RpcAcsRequest<ListMapRouteDetailsResponse> { private String routeList; public ListMapRouteDetailsRequest() { super("CDRS", "2020-11-01", "ListMapRouteDetails"); setMethod(MethodType.POST); } public String getRouteList() { return this.routeList; } public void setRouteList(String routeList) { this.routeList = routeList; if(routeList != null){ putBodyParameter("RouteList", routeList); } } @Override public Class<ListMapRouteDetailsResponse> getResponseClass() { return ListMapRouteDetailsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListMapRouteDetailsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListMapRouteDetailsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListMapRouteDetailsResponse extends AcsResponse { private String code; private String message; private Long pageNumber; private Long pageSize; private String requestId; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String destination; private String origin; private String route; private String type; public String getDestination() { return this.destination; } public void setDestination(String destination) { this.destination = destination; } public String getOrigin() { return this.origin; } public void setOrigin(String origin) { this.origin = origin; } public String getRoute() { return this.route; } public void setRoute(String route) { this.route = route; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } } @Override public ListMapRouteDetailsResponse getInstance(UnmarshallerContext context) { return ListMapRouteDetailsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListMetricsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListMetricsRequest extends RpcAcsRequest<ListMetricsResponse> { private String corpId; private String endTime; private String startTime; private String pageNumber; private String tagCode; private String pageSize; private String aggregateType; public ListMetricsRequest() { super("CDRS", "2020-11-01", "ListMetrics"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber); } } public String getTagCode() { return this.tagCode; } public void setTagCode(String tagCode) { this.tagCode = tagCode; if(tagCode != null){ putBodyParameter("TagCode", tagCode); } } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize); } } public String getAggregateType() { return this.aggregateType; } public void setAggregateType(String aggregateType) { this.aggregateType = aggregateType; if(aggregateType != null){ putBodyParameter("AggregateType", aggregateType); } } @Override public Class<ListMetricsResponse> getResponseClass() { return ListMetricsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListMetricsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListMetricsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListMetricsResponse extends AcsResponse { private String code; private String message; private String requestId; private String pageNumber; private String pageSize; private String totalCount; private List<DataItem> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; } public String getTotalCount() { return this.totalCount; } public void setTotalCount(String totalCount) { this.totalCount = totalCount; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String dateTime; private String tagCode; private String tagValue; private String tagMetric; private String corpId; public String getDateTime() { return this.dateTime; } public void setDateTime(String dateTime) { this.dateTime = dateTime; } public String getTagCode() { return this.tagCode; } public void setTagCode(String tagCode) { this.tagCode = tagCode; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } public String getTagMetric() { return this.tagMetric; } public void setTagMetric(String tagMetric) { this.tagMetric = tagMetric; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } } @Override public ListMetricsResponse getInstance(UnmarshallerContext context) { return ListMetricsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonDetailsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListPersonDetailsRequest extends RpcAcsRequest<ListPersonDetailsResponse> { private String schema; private String corpId; private String endTime; private String startTime; private Long pageNumber; private Long pageSize; private String personId; public ListPersonDetailsRequest() { super("CDRS", "2020-11-01", "ListPersonDetails"); setMethod(MethodType.POST); } public String getSchema() { return this.schema; } public void setSchema(String schema) { this.schema = schema; if(schema != null){ putBodyParameter("Schema", schema); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; if(personId != null){ putBodyParameter("PersonId", personId); } } @Override public Class<ListPersonDetailsResponse> getResponseClass() { return ListPersonDetailsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonDetailsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListPersonDetailsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListPersonDetailsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String personId; private String gender; private String age; private String profession; private String address; private String transportation; private String personType; private String hotSpotAddress; private String updateTime; private String preferredColor; private String faceSourceImage; private String faceTargetImage; private String bodySourceImage; private String bodyTargetImage; private String prefOutTime; public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getGender() { return this.gender; } public void setGender(String gender) { this.gender = gender; } public String getAge() { return this.age; } public void setAge(String age) { this.age = age; } public String getProfession() { return this.profession; } public void setProfession(String profession) { this.profession = profession; } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public String getTransportation() { return this.transportation; } public void setTransportation(String transportation) { this.transportation = transportation; } public String getPersonType() { return this.personType; } public void setPersonType(String personType) { this.personType = personType; } public String getHotSpotAddress() { return this.hotSpotAddress; } public void setHotSpotAddress(String hotSpotAddress) { this.hotSpotAddress = hotSpotAddress; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getPreferredColor() { return this.preferredColor; } public void setPreferredColor(String preferredColor) { this.preferredColor = preferredColor; } public String getFaceSourceImage() { return this.faceSourceImage; } public void setFaceSourceImage(String faceSourceImage) { this.faceSourceImage = faceSourceImage; } public String getFaceTargetImage() { return this.faceTargetImage; } public void setFaceTargetImage(String faceTargetImage) { this.faceTargetImage = faceTargetImage; } public String getBodySourceImage() { return this.bodySourceImage; } public void setBodySourceImage(String bodySourceImage) { this.bodySourceImage = bodySourceImage; } public String getBodyTargetImage() { return this.bodyTargetImage; } public void setBodyTargetImage(String bodyTargetImage) { this.bodyTargetImage = bodyTargetImage; } public String getPrefOutTime() { return this.prefOutTime; } public void setPrefOutTime(String prefOutTime) { this.prefOutTime = prefOutTime; } } @Override public ListPersonDetailsResponse getInstance(UnmarshallerContext context) { return ListPersonDetailsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonResultRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListPersonResultRequest extends RpcAcsRequest<ListPersonResultResponse> { private String profession; private String corpId; private String gender; private String endTime; private String startTime; private Long pageNumber; private Long pageSize; private String age; public ListPersonResultRequest() { super("CDRS", "2020-11-01", "ListPersonResult"); setMethod(MethodType.POST); } public String getProfession() { return this.profession; } public void setProfession(String profession) { this.profession = profession; if(profession != null){ putBodyParameter("Profession", profession); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getGender() { return this.gender; } public void setGender(String gender) { this.gender = gender; if(gender != null){ putBodyParameter("Gender", gender); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getAge() { return this.age; } public void setAge(String age) { this.age = age; if(age != null){ putBodyParameter("Age", age); } } @Override public Class<ListPersonResultResponse> getResponseClass() { return ListPersonResultResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonResultResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListPersonResultResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListPersonResultResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String personId; private String gender; private String age; private String profession; private String address; private String transportation; private String personType; private String hotSpotAddress; private String updateTime; private String targetUrl; private String sourceUrl; public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getGender() { return this.gender; } public void setGender(String gender) { this.gender = gender; } public String getAge() { return this.age; } public void setAge(String age) { this.age = age; } public String getProfession() { return this.profession; } public void setProfession(String profession) { this.profession = profession; } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public String getTransportation() { return this.transportation; } public void setTransportation(String transportation) { this.transportation = transportation; } public String getPersonType() { return this.personType; } public void setPersonType(String personType) { this.personType = personType; } public String getHotSpotAddress() { return this.hotSpotAddress; } public void setHotSpotAddress(String hotSpotAddress) { this.hotSpotAddress = hotSpotAddress; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public String getSourceUrl() { return this.sourceUrl; } public void setSourceUrl(String sourceUrl) { this.sourceUrl = sourceUrl; } } @Override public ListPersonResultResponse getInstance(UnmarshallerContext context) { return ListPersonResultResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTagRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListPersonTagRequest extends RpcAcsRequest<ListPersonTagResponse> { private String corpId; private Long pageNumber; private String tagCode; private Long pageSize; public ListPersonTagRequest() { super("CDRS", "2020-11-01", "ListPersonTag"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getTagCode() { return this.tagCode; } public void setTagCode(String tagCode) { this.tagCode = tagCode; if(tagCode != null){ putBodyParameter("TagCode", tagCode); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } @Override public Class<ListPersonTagResponse> getResponseClass() { return ListPersonTagResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTagResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListPersonTagResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListPersonTagResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String corpId; private String tagValue; private String value; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } @Override public ListPersonTagResponse getInstance(UnmarshallerContext context) { return ListPersonTagResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTopRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListPersonTopRequest extends RpcAcsRequest<ListPersonTopResponse> { private String corpId; private String endTime; private String startTime; private String personId; public ListPersonTopRequest() { super("CDRS", "2020-11-01", "ListPersonTop"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; if(personId != null){ putBodyParameter("PersonId", personId); } } @Override public Class<ListPersonTopResponse> getResponseClass() { return ListPersonTopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTopResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListPersonTopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListPersonTopResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<DataItem> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String corpId; private String personId; private String poiId; private String poiName; private String passHour; private String frequency; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getPoiId() { return this.poiId; } public void setPoiId(String poiId) { this.poiId = poiId; } public String getPoiName() { return this.poiName; } public void setPoiName(String poiName) { this.poiName = poiName; } public String getPassHour() { return this.passHour; } public void setPassHour(String passHour) { this.passHour = passHour; } public String getFrequency() { return this.frequency; } public void setFrequency(String frequency) { this.frequency = frequency; } } @Override public ListPersonTopResponse getInstance(UnmarshallerContext context) { return ListPersonTopResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTraceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListPersonTraceRequest extends RpcAcsRequest<ListPersonTraceResponse> { private String corpId; private String endTime; private String startTime; private String pageNumber; private String pageSize; private String dataSourceId; private String personId; public ListPersonTraceRequest() { super("CDRS", "2020-11-01", "ListPersonTrace"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber); } } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize); } } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; if(dataSourceId != null){ putBodyParameter("DataSourceId", dataSourceId); } } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; if(personId != null){ putBodyParameter("PersonId", personId); } } @Override public Class<ListPersonTraceResponse> getResponseClass() { return ListPersonTraceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTraceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListPersonTraceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListPersonTraceResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<DataItem> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String date; private String lastTime; private String startTime; private String endSourceImage; private String deviceId; private String startTargetImage; private String groupId; private String personId; private String startSourceImage; private String corpId; private String endTargetImage; public String getDate() { return this.date; } public void setDate(String date) { this.date = date; } public String getLastTime() { return this.lastTime; } public void setLastTime(String lastTime) { this.lastTime = lastTime; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndSourceImage() { return this.endSourceImage; } public void setEndSourceImage(String endSourceImage) { this.endSourceImage = endSourceImage; } public String getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; } public String getStartTargetImage() { return this.startTargetImage; } public void setStartTargetImage(String startTargetImage) { this.startTargetImage = startTargetImage; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getStartSourceImage() { return this.startSourceImage; } public void setStartSourceImage(String startSourceImage) { this.startSourceImage = startSourceImage; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getEndTargetImage() { return this.endTargetImage; } public void setEndTargetImage(String endTargetImage) { this.endTargetImage = endTargetImage; } } @Override public ListPersonTraceResponse getInstance(UnmarshallerContext context) { return ListPersonTraceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTrackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListPersonTrackRequest extends RpcAcsRequest<ListPersonTrackResponse> { private String corpId; private String aggregateDimension; private String imageSourceType; private String endTime; private String startTime; private Long pageNumber; private Long pageSize; private String personId; public ListPersonTrackRequest() { super("CDRS", "2020-11-01", "ListPersonTrack"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getAggregateDimension() { return this.aggregateDimension; } public void setAggregateDimension(String aggregateDimension) { this.aggregateDimension = aggregateDimension; if(aggregateDimension != null){ putBodyParameter("AggregateDimension", aggregateDimension); } } public String getImageSourceType() { return this.imageSourceType; } public void setImageSourceType(String imageSourceType) { this.imageSourceType = imageSourceType; if(imageSourceType != null){ putBodyParameter("ImageSourceType", imageSourceType); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; if(personId != null){ putBodyParameter("PersonId", personId); } } @Override public Class<ListPersonTrackResponse> getResponseClass() { return ListPersonTrackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListPersonTrackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListPersonTrackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListPersonTrackResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String personId; private String corpId; private String dataSourceId; private String dataSourceName; private String picUrlPath; private String targetPicUrlPath; private String rightBottomY; private String rightBottomX; private String leftTopY; private String leftTopX; private String shotTime; private String order; private String longitude; private String latitude; private String sourceUrl; private String targetUrl; public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public String getDataSourceName() { return this.dataSourceName; } public void setDataSourceName(String dataSourceName) { this.dataSourceName = dataSourceName; } public String getPicUrlPath() { return this.picUrlPath; } public void setPicUrlPath(String picUrlPath) { this.picUrlPath = picUrlPath; } public String getTargetPicUrlPath() { return this.targetPicUrlPath; } public void setTargetPicUrlPath(String targetPicUrlPath) { this.targetPicUrlPath = targetPicUrlPath; } public String getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(String rightBottomY) { this.rightBottomY = rightBottomY; } public String getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(String rightBottomX) { this.rightBottomX = rightBottomX; } public String getLeftTopY() { return this.leftTopY; } public void setLeftTopY(String leftTopY) { this.leftTopY = leftTopY; } public String getLeftTopX() { return this.leftTopX; } public void setLeftTopX(String leftTopX) { this.leftTopX = leftTopX; } public String getShotTime() { return this.shotTime; } public void setShotTime(String shotTime) { this.shotTime = shotTime; } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; } public String getLongitude() { return this.longitude; } public void setLongitude(String longitude) { this.longitude = longitude; } public String getLatitude() { return this.latitude; } public void setLatitude(String latitude) { this.latitude = latitude; } public String getSourceUrl() { return this.sourceUrl; } public void setSourceUrl(String sourceUrl) { this.sourceUrl = sourceUrl; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } } @Override public ListPersonTrackResponse getInstance(UnmarshallerContext context) { return ListPersonTrackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListRangeDeviceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRangeDeviceRequest extends RpcAcsRequest<ListRangeDeviceResponse> { private String corpId; private Long pageNumber; private String dataSourceId; private Long pageSize; private Integer radius; public ListRangeDeviceRequest() { super("CDRS", "2020-11-01", "ListRangeDevice"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; if(dataSourceId != null){ putBodyParameter("DataSourceId", dataSourceId); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRadius() { return this.radius; } public void setRadius(Integer radius) { this.radius = radius; if(radius != null){ putBodyParameter("Radius", radius.toString()); } } @Override public Class<ListRangeDeviceResponse> getResponseClass() { return ListRangeDeviceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListRangeDeviceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListRangeDeviceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRangeDeviceResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String corpId; private String dataSourceId; private String nearPoi; private String distance; private String dataSourceIdPoi; private String latitude; private String dataSourceIdName; private String longitude; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public String getNearPoi() { return this.nearPoi; } public void setNearPoi(String nearPoi) { this.nearPoi = nearPoi; } public String getDistance() { return this.distance; } public void setDistance(String distance) { this.distance = distance; } public String getDataSourceIdPoi() { return this.dataSourceIdPoi; } public void setDataSourceIdPoi(String dataSourceIdPoi) { this.dataSourceIdPoi = dataSourceIdPoi; } public String getLatitude() { return this.latitude; } public void setLatitude(String latitude) { this.latitude = latitude; } public String getDataSourceIdName() { return this.dataSourceIdName; } public void setDataSourceIdName(String dataSourceIdName) { this.dataSourceIdName = dataSourceIdName; } public String getLongitude() { return this.longitude; } public void setLongitude(String longitude) { this.longitude = longitude; } } @Override public ListRangeDeviceResponse getInstance(UnmarshallerContext context) { return ListRangeDeviceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListStorageStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListStorageStatisticsRequest extends RpcAcsRequest<ListStorageStatisticsResponse> { private String corpId; public ListStorageStatisticsRequest() { super("CDRS", "2020-11-01", "ListStorageStatistics"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } @Override public Class<ListStorageStatisticsResponse> getResponseClass() { return ListStorageStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListStorageStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListStorageStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListStorageStatisticsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String corpId; private String number; private String totalStore; private String unusedStore; private String usedStore; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getNumber() { return this.number; } public void setNumber(String number) { this.number = number; } public String getTotalStore() { return this.totalStore; } public void setTotalStore(String totalStore) { this.totalStore = totalStore; } public String getUnusedStore() { return this.unusedStore; } public void setUnusedStore(String unusedStore) { this.unusedStore = unusedStore; } public String getUsedStore() { return this.usedStore; } public void setUsedStore(String usedStore) { this.usedStore = usedStore; } } @Override public ListStorageStatisticsResponse getInstance(UnmarshallerContext context) { return ListStorageStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListStructureStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListStructureStatisticsRequest extends RpcAcsRequest<ListStructureStatisticsResponse> { private String corpId; private String backCategory; public ListStructureStatisticsRequest() { super("CDRS", "2020-11-01", "ListStructureStatistics"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getBackCategory() { return this.backCategory; } public void setBackCategory(String backCategory) { this.backCategory = backCategory; if(backCategory != null){ putBodyParameter("BackCategory", backCategory); } } @Override public Class<ListStructureStatisticsResponse> getResponseClass() { return ListStructureStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListStructureStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListStructureStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListStructureStatisticsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String number; private String corpId; public String getNumber() { return this.number; } public void setNumber(String number) { this.number = number; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } } @Override public ListStructureStatisticsResponse getInstance(UnmarshallerContext context) { return ListStructureStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListTagMetricsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListTagMetricsRequest extends RpcAcsRequest<ListTagMetricsResponse> { private String corpId; private String endTime; private String startTime; private String pageNumber; private String tagCode; private String pageSize; private String aggregateType; public ListTagMetricsRequest() { super("CDRS", "2020-11-01", "ListTagMetrics"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber); } } public String getTagCode() { return this.tagCode; } public void setTagCode(String tagCode) { this.tagCode = tagCode; if(tagCode != null){ putBodyParameter("TagCode", tagCode); } } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize); } } public String getAggregateType() { return this.aggregateType; } public void setAggregateType(String aggregateType) { this.aggregateType = aggregateType; if(aggregateType != null){ putBodyParameter("AggregateType", aggregateType); } } @Override public Class<ListTagMetricsResponse> getResponseClass() { return ListTagMetricsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListTagMetricsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListTagMetricsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListTagMetricsResponse extends AcsResponse { private String code; private String message; private String requestId; private String pageNumber; private String pageSize; private String totalCount; private List<DataItem> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; } public String getTotalCount() { return this.totalCount; } public void setTotalCount(String totalCount) { this.totalCount = totalCount; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String dateTime; private String tagCode; private String tagValue; private String tagMetric; private String corpId; public String getDateTime() { return this.dateTime; } public void setDateTime(String dateTime) { this.dateTime = dateTime; } public String getTagCode() { return this.tagCode; } public void setTagCode(String tagCode) { this.tagCode = tagCode; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } public String getTagMetric() { return this.tagMetric; } public void setTagMetric(String tagMetric) { this.tagMetric = tagMetric; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } } @Override public ListTagMetricsResponse getInstance(UnmarshallerContext context) { return ListTagMetricsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleDetailsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListVehicleDetailsRequest extends RpcAcsRequest<ListVehicleDetailsResponse> { private String plateId; private String corpId; private String endTime; private String startTime; private String pageNumber; private String pageSize; public ListVehicleDetailsRequest() { super("CDRS", "2020-11-01", "ListVehicleDetails"); setMethod(MethodType.POST); } public String getPlateId() { return this.plateId; } public void setPlateId(String plateId) { this.plateId = plateId; if(plateId != null){ putBodyParameter("PlateId", plateId); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber); } } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize); } } @Override public Class<ListVehicleDetailsResponse> getResponseClass() { return ListVehicleDetailsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleDetailsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListVehicleDetailsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListVehicleDetailsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String vehicleId; private String vehicleColor; private String targetImageStoragePath; private String gender; private String personType; private String prefOutTime; private String popularPoi; private String popularAddress; private String sourceImageStoragePath; private String vehicleClass; private String vehicleApplication; private String personId; private String plateId; public String getVehicleId() { return this.vehicleId; } public void setVehicleId(String vehicleId) { this.vehicleId = vehicleId; } public String getVehicleColor() { return this.vehicleColor; } public void setVehicleColor(String vehicleColor) { this.vehicleColor = vehicleColor; } public String getTargetImageStoragePath() { return this.targetImageStoragePath; } public void setTargetImageStoragePath(String targetImageStoragePath) { this.targetImageStoragePath = targetImageStoragePath; } public String getGender() { return this.gender; } public void setGender(String gender) { this.gender = gender; } public String getPersonType() { return this.personType; } public void setPersonType(String personType) { this.personType = personType; } public String getPrefOutTime() { return this.prefOutTime; } public void setPrefOutTime(String prefOutTime) { this.prefOutTime = prefOutTime; } public String getPopularPoi() { return this.popularPoi; } public void setPopularPoi(String popularPoi) { this.popularPoi = popularPoi; } public String getPopularAddress() { return this.popularAddress; } public void setPopularAddress(String popularAddress) { this.popularAddress = popularAddress; } public String getSourceImageStoragePath() { return this.sourceImageStoragePath; } public void setSourceImageStoragePath(String sourceImageStoragePath) { this.sourceImageStoragePath = sourceImageStoragePath; } public String getVehicleClass() { return this.vehicleClass; } public void setVehicleClass(String vehicleClass) { this.vehicleClass = vehicleClass; } public String getVehicleApplication() { return this.vehicleApplication; } public void setVehicleApplication(String vehicleApplication) { this.vehicleApplication = vehicleApplication; } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getPlateId() { return this.plateId; } public void setPlateId(String plateId) { this.plateId = plateId; } } @Override public ListVehicleDetailsResponse getInstance(UnmarshallerContext context) { return ListVehicleDetailsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleResultsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListVehicleResultsRequest extends RpcAcsRequest<ListVehicleResultsResponse> { private String corpId; private String endTime; private String startTime; private String vehicleColor; private String vehicleApplication; private Long pageNumber; private String vehicleClass; private Long pageSize; public ListVehicleResultsRequest() { super("CDRS", "2020-11-01", "ListVehicleResults"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getVehicleColor() { return this.vehicleColor; } public void setVehicleColor(String vehicleColor) { this.vehicleColor = vehicleColor; if(vehicleColor != null){ putBodyParameter("VehicleColor", vehicleColor); } } public String getVehicleApplication() { return this.vehicleApplication; } public void setVehicleApplication(String vehicleApplication) { this.vehicleApplication = vehicleApplication; if(vehicleApplication != null){ putBodyParameter("VehicleApplication", vehicleApplication); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getVehicleClass() { return this.vehicleClass; } public void setVehicleClass(String vehicleClass) { this.vehicleClass = vehicleClass; if(vehicleClass != null){ putBodyParameter("VehicleClass", vehicleClass); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } @Override public Class<ListVehicleResultsResponse> getResponseClass() { return ListVehicleResultsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleResultsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListVehicleResultsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListVehicleResultsResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String vehicleId; private String gender; private String vehicleClass; private String profession; private String liveAddress; private String plateId; private String vehicleApplication; private String personId; private String updateTime; public String getVehicleId() { return this.vehicleId; } public void setVehicleId(String vehicleId) { this.vehicleId = vehicleId; } public String getGender() { return this.gender; } public void setGender(String gender) { this.gender = gender; } public String getVehicleClass() { return this.vehicleClass; } public void setVehicleClass(String vehicleClass) { this.vehicleClass = vehicleClass; } public String getProfession() { return this.profession; } public void setProfession(String profession) { this.profession = profession; } public String getLiveAddress() { return this.liveAddress; } public void setLiveAddress(String liveAddress) { this.liveAddress = liveAddress; } public String getPlateId() { return this.plateId; } public void setPlateId(String plateId) { this.plateId = plateId; } public String getVehicleApplication() { return this.vehicleApplication; } public void setVehicleApplication(String vehicleApplication) { this.vehicleApplication = vehicleApplication; } public String getPersonId() { return this.personId; } public void setPersonId(String personId) { this.personId = personId; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } } @Override public ListVehicleResultsResponse getInstance(UnmarshallerContext context) { return ListVehicleResultsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleTagDistributeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListVehicleTagDistributeRequest extends RpcAcsRequest<ListVehicleTagDistributeResponse> { private String corpId; private String endTime; private String startTime; private String tagCode; public ListVehicleTagDistributeRequest() { super("CDRS", "2020-11-01", "ListVehicleTagDistribute"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } public String getTagCode() { return this.tagCode; } public void setTagCode(String tagCode) { this.tagCode = tagCode; if(tagCode != null){ putBodyParameter("TagCode", tagCode); } } @Override public Class<ListVehicleTagDistributeResponse> getResponseClass() { return ListVehicleTagDistributeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleTagDistributeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListVehicleTagDistributeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListVehicleTagDistributeResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String corpId; private String tagValue; private String value; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } @Override public ListVehicleTagDistributeResponse getInstance(UnmarshallerContext context) { return ListVehicleTagDistributeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleTopRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListVehicleTopRequest extends RpcAcsRequest<ListVehicleTopResponse> { private String plateId; private String corpId; private String endTime; private String startTime; public ListVehicleTopRequest() { super("CDRS", "2020-11-01", "ListVehicleTop"); setMethod(MethodType.POST); } public String getPlateId() { return this.plateId; } public void setPlateId(String plateId) { this.plateId = plateId; if(plateId != null){ putBodyParameter("PlateId", plateId); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } @Override public Class<ListVehicleTopResponse> getResponseClass() { return ListVehicleTopResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleTopResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListVehicleTopResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListVehicleTopResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String corpId; private String vehicleId; private String poiId; private String poiName; private String passHour; private String frequency; public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getVehicleId() { return this.vehicleId; } public void setVehicleId(String vehicleId) { this.vehicleId = vehicleId; } public String getPoiId() { return this.poiId; } public void setPoiId(String poiId) { this.poiId = poiId; } public String getPoiName() { return this.poiName; } public void setPoiName(String poiName) { this.poiName = poiName; } public String getPassHour() { return this.passHour; } public void setPassHour(String passHour) { this.passHour = passHour; } public String getFrequency() { return this.frequency; } public void setFrequency(String frequency) { this.frequency = frequency; } } @Override public ListVehicleTopResponse getInstance(UnmarshallerContext context) { return ListVehicleTopResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleTrackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListVehicleTrackRequest extends RpcAcsRequest<ListVehicleTrackResponse> { private String plateId; private String corpId; private String endTime; private String startTime; public ListVehicleTrackRequest() { super("CDRS", "2020-11-01", "ListVehicleTrack"); setMethod(MethodType.POST); } public String getPlateId() { return this.plateId; } public void setPlateId(String plateId) { this.plateId = plateId; if(plateId != null){ putBodyParameter("PlateId", plateId); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime); } } @Override public Class<ListVehicleTrackResponse> getResponseClass() { return ListVehicleTrackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/ListVehicleTrackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.ListVehicleTrackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListVehicleTrackResponse extends AcsResponse { private String code; private String message; private String requestId; private Long pageNumber; private Long pageSize; private Long totalCount; private List<Datas> data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private String plateId; private String corpId; private String dataSourceId; private String dataSourceName; private String picUrlPath; private String targetPicUrlPath; private String rightBottomY; private String rightBottomX; private String leftTopY; private String leftTopX; private String passTime; private String order; private String latitude; private String longitude; public String getPlateId() { return this.plateId; } public void setPlateId(String plateId) { this.plateId = plateId; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public String getDataSourceName() { return this.dataSourceName; } public void setDataSourceName(String dataSourceName) { this.dataSourceName = dataSourceName; } public String getPicUrlPath() { return this.picUrlPath; } public void setPicUrlPath(String picUrlPath) { this.picUrlPath = picUrlPath; } public String getTargetPicUrlPath() { return this.targetPicUrlPath; } public void setTargetPicUrlPath(String targetPicUrlPath) { this.targetPicUrlPath = targetPicUrlPath; } public String getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(String rightBottomY) { this.rightBottomY = rightBottomY; } public String getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(String rightBottomX) { this.rightBottomX = rightBottomX; } public String getLeftTopY() { return this.leftTopY; } public void setLeftTopY(String leftTopY) { this.leftTopY = leftTopY; } public String getLeftTopX() { return this.leftTopX; } public void setLeftTopX(String leftTopX) { this.leftTopX = leftTopX; } public String getPassTime() { return this.passTime; } public void setPassTime(String passTime) { this.passTime = passTime; } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; } public String getLatitude() { return this.latitude; } public void setLatitude(String latitude) { this.latitude = latitude; } public String getLongitude() { return this.longitude; } public void setLongitude(String longitude) { this.longitude = longitude; } } @Override public ListVehicleTrackResponse getInstance(UnmarshallerContext context) { return ListVehicleTrackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/PaginateDeviceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class PaginateDeviceRequest extends RpcAcsRequest<PaginateDeviceResponse> { private String corpId; private Long pageNumber; private Boolean countTotalNum; private Long pageSize; public PaginateDeviceRequest() { super("CDRS", "2020-11-01", "PaginateDevice"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Boolean getCountTotalNum() { return this.countTotalNum; } public void setCountTotalNum(Boolean countTotalNum) { this.countTotalNum = countTotalNum; if(countTotalNum != null){ putBodyParameter("CountTotalNum", countTotalNum.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } @Override public Class<PaginateDeviceResponse> getResponseClass() { return PaginateDeviceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/PaginateDeviceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.PaginateDeviceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PaginateDeviceResponse extends AcsResponse { private String requestId; private String message; private String code; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNumber; private Integer pageSize; private Integer totalCount; private List<RecordsItem> records; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<RecordsItem> getRecords() { return this.records; } public void setRecords(List<RecordsItem> records) { this.records = records; } public static class RecordsItem { private String deviceId; public String getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; } } } @Override public PaginateDeviceResponse getInstance(UnmarshallerContext context) { return PaginateDeviceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/PaginateProjectRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class PaginateProjectRequest extends RpcAcsRequest<PaginateProjectResponse> { private String type; private Long pageNumber; private Boolean countTotalNum; private Long pageSize; private String nameLike; public PaginateProjectRequest() { super("CDRS", "2020-11-01", "PaginateProject"); setMethod(MethodType.POST); } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putBodyParameter("Type", type); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Boolean getCountTotalNum() { return this.countTotalNum; } public void setCountTotalNum(Boolean countTotalNum) { this.countTotalNum = countTotalNum; if(countTotalNum != null){ putBodyParameter("CountTotalNum", countTotalNum.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getNameLike() { return this.nameLike; } public void setNameLike(String nameLike) { this.nameLike = nameLike; if(nameLike != null){ putBodyParameter("NameLike", nameLike); } } @Override public Class<PaginateProjectResponse> getResponseClass() { return PaginateProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/PaginateProjectResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.PaginateProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PaginateProjectResponse extends AcsResponse { private String code; private String message; private String requestId; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNumber; private Integer pageSize; private Integer totalCount; private Integer totalPage; private List<RecordsItem> records; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getTotalPage() { return this.totalPage; } public void setTotalPage(Integer totalPage) { this.totalPage = totalPage; } public List<RecordsItem> getRecords() { return this.records; } public void setRecords(List<RecordsItem> records) { this.records = records; } public static class RecordsItem { private String userId; private String type; private String corpId; private String name; private String createdTime; private String modifiedTime; private String icon; private String description; private String aggregateSceneCode; public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getIcon() { return this.icon; } public void setIcon(String icon) { this.icon = icon; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getAggregateSceneCode() { return this.aggregateSceneCode; } public void setAggregateSceneCode(String aggregateSceneCode) { this.aggregateSceneCode = aggregateSceneCode; } } } @Override public PaginateProjectResponse getInstance(UnmarshallerContext context) { return PaginateProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/RecognizeImageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class RecognizeImageRequest extends RpcAcsRequest<RecognizeImageResponse> { private String corpId; private String vendor; private String imageUrl; private String imageContent; public RecognizeImageRequest() { super("CDRS", "2020-11-01", "RecognizeImage"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getVendor() { return this.vendor; } public void setVendor(String vendor) { this.vendor = vendor; if(vendor != null){ putBodyParameter("Vendor", vendor); } } public String getImageUrl() { return this.imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; if(imageUrl != null){ putBodyParameter("ImageUrl", imageUrl); } } public String getImageContent() { return this.imageContent; } public void setImageContent(String imageContent) { this.imageContent = imageContent; if(imageContent != null){ putBodyParameter("ImageContent", imageContent); } } @Override public Class<RecognizeImageResponse> getResponseClass() { return RecognizeImageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/RecognizeImageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.RecognizeImageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RecognizeImageResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<BodyListItem> bodyList; private List<FaceListItem> faceList; public List<BodyListItem> getBodyList() { return this.bodyList; } public void setBodyList(List<BodyListItem> bodyList) { this.bodyList = bodyList; } public List<FaceListItem> getFaceList() { return this.faceList; } public void setFaceList(List<FaceListItem> faceList) { this.faceList = faceList; } public static class BodyListItem { private Integer leftTopX; private Integer leftTopY; private Integer rightBottomX; private Integer rightBottomY; private String feature; public Integer getLeftTopX() { return this.leftTopX; } public void setLeftTopX(Integer leftTopX) { this.leftTopX = leftTopX; } public Integer getLeftTopY() { return this.leftTopY; } public void setLeftTopY(Integer leftTopY) { this.leftTopY = leftTopY; } public Integer getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(Integer rightBottomX) { this.rightBottomX = rightBottomX; } public Integer getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(Integer rightBottomY) { this.rightBottomY = rightBottomY; } public String getFeature() { return this.feature; } public void setFeature(String feature) { this.feature = feature; } } public static class FaceListItem { private Integer leftTopX; private Integer leftTopY; private Integer rightBottomX; private Integer rightBottomY; private Float faceQuality; private Float faceKeyPointQuality; private String feature; public Integer getLeftTopX() { return this.leftTopX; } public void setLeftTopX(Integer leftTopX) { this.leftTopX = leftTopX; } public Integer getLeftTopY() { return this.leftTopY; } public void setLeftTopY(Integer leftTopY) { this.leftTopY = leftTopY; } public Integer getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(Integer rightBottomX) { this.rightBottomX = rightBottomX; } public Integer getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(Integer rightBottomY) { this.rightBottomY = rightBottomY; } public Float getFaceQuality() { return this.faceQuality; } public void setFaceQuality(Float faceQuality) { this.faceQuality = faceQuality; } public Float getFaceKeyPointQuality() { return this.faceKeyPointQuality; } public void setFaceKeyPointQuality(Float faceKeyPointQuality) { this.faceKeyPointQuality = faceKeyPointQuality; } public String getFeature() { return this.feature; } public void setFeature(String feature) { this.feature = feature; } } } @Override public RecognizeImageResponse getInstance(UnmarshallerContext context) { return RecognizeImageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/SearchObjectRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class SearchObjectRequest extends RpcAcsRequest<SearchObjectResponse> { private String shotTimeEnd; private String corpId; private Integer pageNumber; private String feature; private String vendor; private Integer pageSize; private String imageContent; private String objectType; private String deviceList; private String imageUrl; private String attributes; private String shotTimeStart; public SearchObjectRequest() { super("CDRS", "2020-11-01", "SearchObject"); setMethod(MethodType.POST); } public String getShotTimeEnd() { return this.shotTimeEnd; } public void setShotTimeEnd(String shotTimeEnd) { this.shotTimeEnd = shotTimeEnd; if(shotTimeEnd != null){ putBodyParameter("ShotTimeEnd", shotTimeEnd); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getFeature() { return this.feature; } public void setFeature(String feature) { this.feature = feature; if(feature != null){ putBodyParameter("Feature", feature); } } public String getVendor() { return this.vendor; } public void setVendor(String vendor) { this.vendor = vendor; if(vendor != null){ putBodyParameter("Vendor", vendor); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getImageContent() { return this.imageContent; } public void setImageContent(String imageContent) { this.imageContent = imageContent; if(imageContent != null){ putBodyParameter("ImageContent", imageContent); } } public String getObjectType() { return this.objectType; } public void setObjectType(String objectType) { this.objectType = objectType; if(objectType != null){ putBodyParameter("ObjectType", objectType); } } public String getDeviceList() { return this.deviceList; } public void setDeviceList(String deviceList) { this.deviceList = deviceList; if(deviceList != null){ putBodyParameter("DeviceList", deviceList); } } public String getImageUrl() { return this.imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; if(imageUrl != null){ putBodyParameter("ImageUrl", imageUrl); } } public String getAttributes() { return this.attributes; } public void setAttributes(String attributes) { this.attributes = attributes; if(attributes != null){ putBodyParameter("Attributes", attributes); } } public String getShotTimeStart() { return this.shotTimeStart; } public void setShotTimeStart(String shotTimeStart) { this.shotTimeStart = shotTimeStart; if(shotTimeStart != null){ putBodyParameter("ShotTimeStart", shotTimeStart); } } @Override public Class<SearchObjectResponse> getResponseClass() { return SearchObjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/SearchObjectResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.SearchObjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchObjectResponse extends AcsResponse { private String code; private String message; private Integer total; private Long pageSize; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<BodyListItem> bodyList; private List<FaceListItem> faceList; private List<MotorListItem> motorList; private List<NonMotorListItem> nonMotorList; public List<BodyListItem> getBodyList() { return this.bodyList; } public void setBodyList(List<BodyListItem> bodyList) { this.bodyList = bodyList; } public List<FaceListItem> getFaceList() { return this.faceList; } public void setFaceList(List<FaceListItem> faceList) { this.faceList = faceList; } public List<MotorListItem> getMotorList() { return this.motorList; } public void setMotorList(List<MotorListItem> motorList) { this.motorList = motorList; } public List<NonMotorListItem> getNonMotorList() { return this.nonMotorList; } public void setNonMotorList(List<NonMotorListItem> nonMotorList) { this.nonMotorList = nonMotorList; } public static class BodyListItem { private String deviceID; private String objectType; private Integer leftTopX; private Integer leftTopY; private Integer rightBottomX; private Integer rightBottomY; private Float score; private String shotTime; private String sourceImageUrl; private String targetImageUrl; public String getDeviceID() { return this.deviceID; } public void setDeviceID(String deviceID) { this.deviceID = deviceID; } public String getObjectType() { return this.objectType; } public void setObjectType(String objectType) { this.objectType = objectType; } public Integer getLeftTopX() { return this.leftTopX; } public void setLeftTopX(Integer leftTopX) { this.leftTopX = leftTopX; } public Integer getLeftTopY() { return this.leftTopY; } public void setLeftTopY(Integer leftTopY) { this.leftTopY = leftTopY; } public Integer getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(Integer rightBottomX) { this.rightBottomX = rightBottomX; } public Integer getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(Integer rightBottomY) { this.rightBottomY = rightBottomY; } public Float getScore() { return this.score; } public void setScore(Float score) { this.score = score; } public String getShotTime() { return this.shotTime; } public void setShotTime(String shotTime) { this.shotTime = shotTime; } public String getSourceImageUrl() { return this.sourceImageUrl; } public void setSourceImageUrl(String sourceImageUrl) { this.sourceImageUrl = sourceImageUrl; } public String getTargetImageUrl() { return this.targetImageUrl; } public void setTargetImageUrl(String targetImageUrl) { this.targetImageUrl = targetImageUrl; } } public static class FaceListItem { private String deviceID; private String objectType; private Integer leftTopX; private Integer leftTopY; private Integer rightBottomX; private Integer rightBottomY; private Float score; private String shotTime; private String sourceImageUrl; private String targetImageUrl; public String getDeviceID() { return this.deviceID; } public void setDeviceID(String deviceID) { this.deviceID = deviceID; } public String getObjectType() { return this.objectType; } public void setObjectType(String objectType) { this.objectType = objectType; } public Integer getLeftTopX() { return this.leftTopX; } public void setLeftTopX(Integer leftTopX) { this.leftTopX = leftTopX; } public Integer getLeftTopY() { return this.leftTopY; } public void setLeftTopY(Integer leftTopY) { this.leftTopY = leftTopY; } public Integer getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(Integer rightBottomX) { this.rightBottomX = rightBottomX; } public Integer getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(Integer rightBottomY) { this.rightBottomY = rightBottomY; } public Float getScore() { return this.score; } public void setScore(Float score) { this.score = score; } public String getShotTime() { return this.shotTime; } public void setShotTime(String shotTime) { this.shotTime = shotTime; } public String getSourceImageUrl() { return this.sourceImageUrl; } public void setSourceImageUrl(String sourceImageUrl) { this.sourceImageUrl = sourceImageUrl; } public String getTargetImageUrl() { return this.targetImageUrl; } public void setTargetImageUrl(String targetImageUrl) { this.targetImageUrl = targetImageUrl; } } public static class MotorListItem { private String deviceID; private String objectType; private Integer leftTopX; private Integer leftTopY; private Integer rightBottomX; private Integer rightBottomY; private Float score; private String shotTime; private String sourceImageUrl; private String targetImageUrl; public String getDeviceID() { return this.deviceID; } public void setDeviceID(String deviceID) { this.deviceID = deviceID; } public String getObjectType() { return this.objectType; } public void setObjectType(String objectType) { this.objectType = objectType; } public Integer getLeftTopX() { return this.leftTopX; } public void setLeftTopX(Integer leftTopX) { this.leftTopX = leftTopX; } public Integer getLeftTopY() { return this.leftTopY; } public void setLeftTopY(Integer leftTopY) { this.leftTopY = leftTopY; } public Integer getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(Integer rightBottomX) { this.rightBottomX = rightBottomX; } public Integer getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(Integer rightBottomY) { this.rightBottomY = rightBottomY; } public Float getScore() { return this.score; } public void setScore(Float score) { this.score = score; } public String getShotTime() { return this.shotTime; } public void setShotTime(String shotTime) { this.shotTime = shotTime; } public String getSourceImageUrl() { return this.sourceImageUrl; } public void setSourceImageUrl(String sourceImageUrl) { this.sourceImageUrl = sourceImageUrl; } public String getTargetImageUrl() { return this.targetImageUrl; } public void setTargetImageUrl(String targetImageUrl) { this.targetImageUrl = targetImageUrl; } } public static class NonMotorListItem { private String deviceID; private String objectType; private Integer leftTopX; private Integer leftTopY; private Integer rightBottomX; private Integer rightBottomY; private Integer score; private String shotTime; private String sourceImageUrl; private String targetImageUrl; public String getDeviceID() { return this.deviceID; } public void setDeviceID(String deviceID) { this.deviceID = deviceID; } public String getObjectType() { return this.objectType; } public void setObjectType(String objectType) { this.objectType = objectType; } public Integer getLeftTopX() { return this.leftTopX; } public void setLeftTopX(Integer leftTopX) { this.leftTopX = leftTopX; } public Integer getLeftTopY() { return this.leftTopY; } public void setLeftTopY(Integer leftTopY) { this.leftTopY = leftTopY; } public Integer getRightBottomX() { return this.rightBottomX; } public void setRightBottomX(Integer rightBottomX) { this.rightBottomX = rightBottomX; } public Integer getRightBottomY() { return this.rightBottomY; } public void setRightBottomY(Integer rightBottomY) { this.rightBottomY = rightBottomY; } public Integer getScore() { return this.score; } public void setScore(Integer score) { this.score = score; } public String getShotTime() { return this.shotTime; } public void setShotTime(String shotTime) { this.shotTime = shotTime; } public String getSourceImageUrl() { return this.sourceImageUrl; } public void setSourceImageUrl(String sourceImageUrl) { this.sourceImageUrl = sourceImageUrl; } public String getTargetImageUrl() { return this.targetImageUrl; } public void setTargetImageUrl(String targetImageUrl) { this.targetImageUrl = targetImageUrl; } } } @Override public SearchObjectResponse getInstance(UnmarshallerContext context) { return SearchObjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/StopCdrsMonitorRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class StopCdrsMonitorRequest extends RpcAcsRequest<StopCdrsMonitorResponse> { private String corpId; private String algorithmVendor; private String taskId; public StopCdrsMonitorRequest() { super("CDRS", "2020-11-01", "StopCdrsMonitor"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getAlgorithmVendor() { return this.algorithmVendor; } public void setAlgorithmVendor(String algorithmVendor) { this.algorithmVendor = algorithmVendor; if(algorithmVendor != null){ putBodyParameter("AlgorithmVendor", algorithmVendor); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putBodyParameter("TaskId", taskId); } } @Override public Class<StopCdrsMonitorResponse> getResponseClass() { return StopCdrsMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/StopCdrsMonitorResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.StopCdrsMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StopCdrsMonitorResponse extends AcsResponse { private String code; private String data; private String message; private String requestId; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public StopCdrsMonitorResponse getInstance(UnmarshallerContext context) { return StopCdrsMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/UnbindDeviceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class UnbindDeviceRequest extends RpcAcsRequest<UnbindDeviceResponse> { private String deviceIds; private String corpId; public UnbindDeviceRequest() { super("CDRS", "2020-11-01", "UnbindDevice"); setMethod(MethodType.POST); } public String getDeviceIds() { return this.deviceIds; } public void setDeviceIds(String deviceIds) { this.deviceIds = deviceIds; if(deviceIds != null){ putBodyParameter("DeviceIds", deviceIds); } } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } @Override public Class<UnbindDeviceResponse> getResponseClass() { return UnbindDeviceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/UnbindDeviceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.UnbindDeviceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UnbindDeviceResponse extends AcsResponse { private String requestId; private String code; private String message; private List<Datas> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<Datas> getData() { return this.data; } public void setData(List<Datas> data) { this.data = data; } public static class Datas { private Boolean success; private String code; private String message; private String deviceId; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; } } @Override public UnbindDeviceResponse getInstance(UnmarshallerContext context) { return UnbindDeviceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/UpdateCdrsMonitorRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class UpdateCdrsMonitorRequest extends RpcAcsRequest<UpdateCdrsMonitorResponse> { private String corpId; private String description; private String ruleName; private String picOperateType; private String attributeName; private String attributeOperateType; private String ruleExpression; private Integer notifierTimeOut; private String taskId; private String deviceOperateType; private String picList; private String attributeValueList; private String notifierAppSecret; private String notifierExtendValues; private String deviceList; private String notifierUrl; private String notifierType; private String algorithmVendor; public UpdateCdrsMonitorRequest() { super("CDRS", "2020-11-01", "UpdateCdrsMonitor"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putBodyParameter("Description", description); } } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; if(ruleName != null){ putBodyParameter("RuleName", ruleName); } } public String getPicOperateType() { return this.picOperateType; } public void setPicOperateType(String picOperateType) { this.picOperateType = picOperateType; if(picOperateType != null){ putBodyParameter("PicOperateType", picOperateType); } } public String getAttributeName() { return this.attributeName; } public void setAttributeName(String attributeName) { this.attributeName = attributeName; if(attributeName != null){ putBodyParameter("AttributeName", attributeName); } } public String getAttributeOperateType() { return this.attributeOperateType; } public void setAttributeOperateType(String attributeOperateType) { this.attributeOperateType = attributeOperateType; if(attributeOperateType != null){ putBodyParameter("AttributeOperateType", attributeOperateType); } } public String getRuleExpression() { return this.ruleExpression; } public void setRuleExpression(String ruleExpression) { this.ruleExpression = ruleExpression; if(ruleExpression != null){ putBodyParameter("RuleExpression", ruleExpression); } } public Integer getNotifierTimeOut() { return this.notifierTimeOut; } public void setNotifierTimeOut(Integer notifierTimeOut) { this.notifierTimeOut = notifierTimeOut; if(notifierTimeOut != null){ putBodyParameter("NotifierTimeOut", notifierTimeOut.toString()); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putBodyParameter("TaskId", taskId); } } public String getDeviceOperateType() { return this.deviceOperateType; } public void setDeviceOperateType(String deviceOperateType) { this.deviceOperateType = deviceOperateType; if(deviceOperateType != null){ putBodyParameter("DeviceOperateType", deviceOperateType); } } public String getPicList() { return this.picList; } public void setPicList(String picList) { this.picList = picList; if(picList != null){ putBodyParameter("PicList", picList); } } public String getAttributeValueList() { return this.attributeValueList; } public void setAttributeValueList(String attributeValueList) { this.attributeValueList = attributeValueList; if(attributeValueList != null){ putBodyParameter("AttributeValueList", attributeValueList); } } public String getNotifierAppSecret() { return this.notifierAppSecret; } public void setNotifierAppSecret(String notifierAppSecret) { this.notifierAppSecret = notifierAppSecret; if(notifierAppSecret != null){ putBodyParameter("NotifierAppSecret", notifierAppSecret); } } public String getNotifierExtendValues() { return this.notifierExtendValues; } public void setNotifierExtendValues(String notifierExtendValues) { this.notifierExtendValues = notifierExtendValues; if(notifierExtendValues != null){ putBodyParameter("NotifierExtendValues", notifierExtendValues); } } public String getDeviceList() { return this.deviceList; } public void setDeviceList(String deviceList) { this.deviceList = deviceList; if(deviceList != null){ putBodyParameter("DeviceList", deviceList); } } public String getNotifierUrl() { return this.notifierUrl; } public void setNotifierUrl(String notifierUrl) { this.notifierUrl = notifierUrl; if(notifierUrl != null){ putBodyParameter("NotifierUrl", notifierUrl); } } public String getNotifierType() { return this.notifierType; } public void setNotifierType(String notifierType) { this.notifierType = notifierType; if(notifierType != null){ putBodyParameter("NotifierType", notifierType); } } public String getAlgorithmVendor() { return this.algorithmVendor; } public void setAlgorithmVendor(String algorithmVendor) { this.algorithmVendor = algorithmVendor; if(algorithmVendor != null){ putBodyParameter("AlgorithmVendor", algorithmVendor); } } @Override public Class<UpdateCdrsMonitorResponse> getResponseClass() { return UpdateCdrsMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/UpdateCdrsMonitorResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.UpdateCdrsMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateCdrsMonitorResponse extends AcsResponse { private String code; private String data; private String message; private String requestId; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public UpdateCdrsMonitorResponse getInstance(UnmarshallerContext context) { return UpdateCdrsMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/UpdateProjectRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class UpdateProjectRequest extends RpcAcsRequest<UpdateProjectResponse> { private String corpId; private String icon; private String description; private String name; private String aggregateSceneCode; public UpdateProjectRequest() { super("CDRS", "2020-11-01", "UpdateProject"); setMethod(MethodType.POST); } public String getCorpId() { return this.corpId; } public void setCorpId(String corpId) { this.corpId = corpId; if(corpId != null){ putBodyParameter("CorpId", corpId); } } public String getIcon() { return this.icon; } public void setIcon(String icon) { this.icon = icon; if(icon != null){ putBodyParameter("Icon", icon); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putBodyParameter("Description", description); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putBodyParameter("Name", name); } } public String getAggregateSceneCode() { return this.aggregateSceneCode; } public void setAggregateSceneCode(String aggregateSceneCode) { this.aggregateSceneCode = aggregateSceneCode; if(aggregateSceneCode != null){ putBodyParameter("AggregateSceneCode", aggregateSceneCode); } } @Override public Class<UpdateProjectResponse> getResponseClass() { return UpdateProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/model/v20201101/UpdateProjectResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.model.v20201101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cdrs.transform.v20201101.UpdateProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateProjectResponse extends AcsResponse { private String requestId; private String code; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public UpdateProjectResponse getInstance(UnmarshallerContext context) { return UpdateProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/AddCdrsMonitorResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import com.aliyuncs.cdrs.model.v20201101.AddCdrsMonitorResponse; import com.aliyuncs.cdrs.model.v20201101.AddCdrsMonitorResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class AddCdrsMonitorResponseUnmarshaller { public static AddCdrsMonitorResponse unmarshall(AddCdrsMonitorResponse addCdrsMonitorResponse, UnmarshallerContext _ctx) { addCdrsMonitorResponse.setRequestId(_ctx.stringValue("AddCdrsMonitorResponse.RequestId")); addCdrsMonitorResponse.setCode(_ctx.stringValue("AddCdrsMonitorResponse.Code")); addCdrsMonitorResponse.setMessage(_ctx.stringValue("AddCdrsMonitorResponse.Message")); Data data = new Data(); data.setTaskId(_ctx.stringValue("AddCdrsMonitorResponse.Data.TaskId")); addCdrsMonitorResponse.setData(data); return addCdrsMonitorResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/BindDeviceResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.BindDeviceResponse; import com.aliyuncs.cdrs.model.v20201101.BindDeviceResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class BindDeviceResponseUnmarshaller { public static BindDeviceResponse unmarshall(BindDeviceResponse bindDeviceResponse, UnmarshallerContext _ctx) { bindDeviceResponse.setRequestId(_ctx.stringValue("BindDeviceResponse.RequestId")); bindDeviceResponse.setCode(_ctx.stringValue("BindDeviceResponse.Code")); bindDeviceResponse.setMessage(_ctx.stringValue("BindDeviceResponse.Message")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("BindDeviceResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setSuccess(_ctx.booleanValue("BindDeviceResponse.Data["+ i +"].Success")); datas.setCode(_ctx.stringValue("BindDeviceResponse.Data["+ i +"].Code")); datas.setMessage(_ctx.stringValue("BindDeviceResponse.Data["+ i +"].Message")); datas.setDeviceId(_ctx.stringValue("BindDeviceResponse.Data["+ i +"].DeviceId")); data.add(datas); } bindDeviceResponse.setData(data); return bindDeviceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/CreateProjectResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import com.aliyuncs.cdrs.model.v20201101.CreateProjectResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateProjectResponseUnmarshaller { public static CreateProjectResponse unmarshall(CreateProjectResponse createProjectResponse, UnmarshallerContext _ctx) { createProjectResponse.setRequestId(_ctx.stringValue("CreateProjectResponse.RequestId")); createProjectResponse.setCode(_ctx.stringValue("CreateProjectResponse.Code")); createProjectResponse.setMessage(_ctx.stringValue("CreateProjectResponse.Message")); createProjectResponse.setCorpId(_ctx.stringValue("CreateProjectResponse.CorpId")); return createProjectResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/GetCdrsMonitorListResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.GetCdrsMonitorListResponse; import com.aliyuncs.cdrs.model.v20201101.GetCdrsMonitorListResponse.Data; import com.aliyuncs.cdrs.model.v20201101.GetCdrsMonitorListResponse.Data.Record; import com.aliyuncs.transform.UnmarshallerContext; public class GetCdrsMonitorListResponseUnmarshaller { public static GetCdrsMonitorListResponse unmarshall(GetCdrsMonitorListResponse getCdrsMonitorListResponse, UnmarshallerContext _ctx) { getCdrsMonitorListResponse.setRequestId(_ctx.stringValue("GetCdrsMonitorListResponse.RequestId")); getCdrsMonitorListResponse.setCode(_ctx.stringValue("GetCdrsMonitorListResponse.Code")); getCdrsMonitorListResponse.setMessage(_ctx.stringValue("GetCdrsMonitorListResponse.Message")); Data data = new Data(); data.setPageNo(_ctx.integerValue("GetCdrsMonitorListResponse.Data.PageNo")); data.setPageSize(_ctx.integerValue("GetCdrsMonitorListResponse.Data.PageSize")); data.setTotalCount(_ctx.integerValue("GetCdrsMonitorListResponse.Data.TotalCount")); data.setTotalPage(_ctx.integerValue("GetCdrsMonitorListResponse.Data.TotalPage")); List<Record> records = new ArrayList<Record>(); for (int i = 0; i < _ctx.lengthValue("GetCdrsMonitorListResponse.Data.Records.Length"); i++) { Record record = new Record(); record.setTaskId(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].TaskId")); record.setStatus(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].Status")); record.setMonitorType(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].MonitorType")); record.setRuleName(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].RuleName")); record.setAlgorithmVendor(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].AlgorithmVendor")); record.setCreateDate(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].CreateDate")); record.setModifiedDate(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].ModifiedDate")); record.setDeviceList(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].DeviceList")); record.setAttributes(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].Attributes")); record.setRuleExpression(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].RuleExpression")); record.setNotifierType(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].NotifierType")); record.setNotifierExtra(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].NotifierExtra")); record.setDescription(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].Description")); record.setExpression(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].Expression")); record.setImageMatch(_ctx.stringValue("GetCdrsMonitorListResponse.Data.Records["+ i +"].ImageMatch")); records.add(record); } data.setRecords(records); getCdrsMonitorListResponse.setData(data); return getCdrsMonitorListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/GetCdrsMonitorResultResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.GetCdrsMonitorResultResponse; import com.aliyuncs.cdrs.model.v20201101.GetCdrsMonitorResultResponse.Data; import com.aliyuncs.cdrs.model.v20201101.GetCdrsMonitorResultResponse.Data.RecordsItem; import com.aliyuncs.cdrs.model.v20201101.GetCdrsMonitorResultResponse.Data.RecordsItem.ExtendInfo; import com.aliyuncs.transform.UnmarshallerContext; public class GetCdrsMonitorResultResponseUnmarshaller { public static GetCdrsMonitorResultResponse unmarshall(GetCdrsMonitorResultResponse getCdrsMonitorResultResponse, UnmarshallerContext _ctx) { getCdrsMonitorResultResponse.setRequestId(_ctx.stringValue("GetCdrsMonitorResultResponse.RequestId")); getCdrsMonitorResultResponse.setCode(_ctx.stringValue("GetCdrsMonitorResultResponse.Code")); getCdrsMonitorResultResponse.setMessage(_ctx.stringValue("GetCdrsMonitorResultResponse.Message")); Data data = new Data(); data.setMaxId(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.MaxId")); List<RecordsItem> records = new ArrayList<RecordsItem>(); for (int i = 0; i < _ctx.lengthValue("GetCdrsMonitorResultResponse.Data.Records.Length"); i++) { RecordsItem recordsItem = new RecordsItem(); recordsItem.setRightBottomY(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].RightBottomY")); recordsItem.setRightBottomX(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].RightBottomX")); recordsItem.setLeftUpY(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].LeftUpY")); recordsItem.setLeftUpX(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].LeftUpX")); recordsItem.setGbId(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].GbId")); recordsItem.setScore(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].Score")); recordsItem.setPicUrl(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].PicUrl")); recordsItem.setShotTime(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].ShotTime")); recordsItem.setMonitorPicUrl(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].MonitorPicUrl")); recordsItem.setTargetPicUrl(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].TargetPicUrl")); recordsItem.setTaskId(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].TaskId")); ExtendInfo extendInfo = new ExtendInfo(); extendInfo.setPlateNo(_ctx.stringValue("GetCdrsMonitorResultResponse.Data.Records["+ i +"].ExtendInfo.PlateNo")); recordsItem.setExtendInfo(extendInfo); records.add(recordsItem); } data.setRecords(records); getCdrsMonitorResultResponse.setData(data); return getCdrsMonitorResultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListAreaHotSpotMetricsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListAreaHotSpotMetricsResponse; import com.aliyuncs.cdrs.model.v20201101.ListAreaHotSpotMetricsResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListAreaHotSpotMetricsResponseUnmarshaller { public static ListAreaHotSpotMetricsResponse unmarshall(ListAreaHotSpotMetricsResponse listAreaHotSpotMetricsResponse, UnmarshallerContext _ctx) { listAreaHotSpotMetricsResponse.setRequestId(_ctx.stringValue("ListAreaHotSpotMetricsResponse.RequestId")); listAreaHotSpotMetricsResponse.setCode(_ctx.stringValue("ListAreaHotSpotMetricsResponse.Code")); listAreaHotSpotMetricsResponse.setMessage(_ctx.stringValue("ListAreaHotSpotMetricsResponse.Message")); listAreaHotSpotMetricsResponse.setPageNumber(_ctx.stringValue("ListAreaHotSpotMetricsResponse.PageNumber")); listAreaHotSpotMetricsResponse.setPageSize(_ctx.stringValue("ListAreaHotSpotMetricsResponse.PageSize")); listAreaHotSpotMetricsResponse.setTotalCount(_ctx.stringValue("ListAreaHotSpotMetricsResponse.TotalCount")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListAreaHotSpotMetricsResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setTimes(_ctx.stringValue("ListAreaHotSpotMetricsResponse.Data["+ i +"].Times")); dataItem.setCoordinates(_ctx.stringValue("ListAreaHotSpotMetricsResponse.Data["+ i +"].Coordinates")); dataItem.setDeviceId(_ctx.stringValue("ListAreaHotSpotMetricsResponse.Data["+ i +"].DeviceId")); dataItem.setPersonId(_ctx.stringValue("ListAreaHotSpotMetricsResponse.Data["+ i +"].PersonId")); dataItem.setIntervalTime(_ctx.stringValue("ListAreaHotSpotMetricsResponse.Data["+ i +"].IntervalTime")); data.add(dataItem); } listAreaHotSpotMetricsResponse.setData(data); return listAreaHotSpotMetricsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCityMapAoisResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCityMapAoisResponse; import com.aliyuncs.cdrs.model.v20201101.ListCityMapAoisResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListCityMapAoisResponseUnmarshaller { public static ListCityMapAoisResponse unmarshall(ListCityMapAoisResponse listCityMapAoisResponse, UnmarshallerContext _ctx) { listCityMapAoisResponse.setRequestId(_ctx.stringValue("ListCityMapAoisResponse.RequestId")); listCityMapAoisResponse.setCode(_ctx.stringValue("ListCityMapAoisResponse.Code")); listCityMapAoisResponse.setMessage(_ctx.stringValue("ListCityMapAoisResponse.Message")); listCityMapAoisResponse.setTotalCount(_ctx.longValue("ListCityMapAoisResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListCityMapAoisResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setId(_ctx.stringValue("ListCityMapAoisResponse.Data["+ i +"].Id")); datas.setValue(_ctx.stringValue("ListCityMapAoisResponse.Data["+ i +"].Value")); data.add(datas); } listCityMapAoisResponse.setData(data); return listCityMapAoisResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCityMapCameraResultsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCityMapCameraResultsResponse; import com.aliyuncs.cdrs.model.v20201101.ListCityMapCameraResultsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListCityMapCameraResultsResponseUnmarshaller { public static ListCityMapCameraResultsResponse unmarshall(ListCityMapCameraResultsResponse listCityMapCameraResultsResponse, UnmarshallerContext _ctx) { listCityMapCameraResultsResponse.setRequestId(_ctx.stringValue("ListCityMapCameraResultsResponse.RequestId")); listCityMapCameraResultsResponse.setCode(_ctx.stringValue("ListCityMapCameraResultsResponse.Code")); listCityMapCameraResultsResponse.setMessage(_ctx.stringValue("ListCityMapCameraResultsResponse.Message")); listCityMapCameraResultsResponse.setTotalCount(_ctx.longValue("ListCityMapCameraResultsResponse.TotalCount")); listCityMapCameraResultsResponse.setPageNum(_ctx.stringValue("ListCityMapCameraResultsResponse.PageNum")); listCityMapCameraResultsResponse.setPageSize(_ctx.stringValue("ListCityMapCameraResultsResponse.PageSize")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListCityMapCameraResultsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDataSourceId(_ctx.stringValue("ListCityMapCameraResultsResponse.Data["+ i +"].DataSourceId")); datas.setLatitude(_ctx.stringValue("ListCityMapCameraResultsResponse.Data["+ i +"].Latitude")); datas.setLongitude(_ctx.stringValue("ListCityMapCameraResultsResponse.Data["+ i +"].Longitude")); datas.setNearPoi(_ctx.stringValue("ListCityMapCameraResultsResponse.Data["+ i +"].NearPoi")); datas.setDataSourcePoi(_ctx.stringValue("ListCityMapCameraResultsResponse.Data["+ i +"].DataSourcePoi")); datas.setDataSourceName(_ctx.stringValue("ListCityMapCameraResultsResponse.Data["+ i +"].DataSourceName")); datas.setCorpId(_ctx.stringValue("ListCityMapCameraResultsResponse.Data["+ i +"].CorpId")); data.add(datas); } listCityMapCameraResultsResponse.setData(data); return listCityMapCameraResultsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCityMapCameraStatisticsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCityMapCameraStatisticsResponse; import com.aliyuncs.cdrs.model.v20201101.ListCityMapCameraStatisticsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListCityMapCameraStatisticsResponseUnmarshaller { public static ListCityMapCameraStatisticsResponse unmarshall(ListCityMapCameraStatisticsResponse listCityMapCameraStatisticsResponse, UnmarshallerContext _ctx) { listCityMapCameraStatisticsResponse.setRequestId(_ctx.stringValue("ListCityMapCameraStatisticsResponse.RequestId")); listCityMapCameraStatisticsResponse.setCode(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Code")); listCityMapCameraStatisticsResponse.setMessage(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Message")); listCityMapCameraStatisticsResponse.setPageNumber(_ctx.longValue("ListCityMapCameraStatisticsResponse.PageNumber")); listCityMapCameraStatisticsResponse.setPageSize(_ctx.longValue("ListCityMapCameraStatisticsResponse.PageSize")); listCityMapCameraStatisticsResponse.setTotalCount(_ctx.longValue("ListCityMapCameraStatisticsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListCityMapCameraStatisticsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDataSourceId(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].DataSourceId")); datas.setLatitude(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].Latitude")); datas.setLongitude(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].Longitude")); datas.setDataSourceName(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].DataSourceName")); datas.setCorpId(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].CorpId")); datas.setAdultValue(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].AdultValue")); datas.setWomanValue(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].WomanValue")); datas.setMotorValue(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].MotorValue")); datas.setManValue(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].ManValue")); datas.setOldValue(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].OldValue")); datas.setChildValue(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].ChildValue")); datas.setStatisticTime(_ctx.stringValue("ListCityMapCameraStatisticsResponse.Data["+ i +"].StatisticTime")); data.add(datas); } listCityMapCameraStatisticsResponse.setData(data); return listCityMapCameraStatisticsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCityMapImageDetailsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCityMapImageDetailsResponse; import com.aliyuncs.cdrs.model.v20201101.ListCityMapImageDetailsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListCityMapImageDetailsResponseUnmarshaller { public static ListCityMapImageDetailsResponse unmarshall(ListCityMapImageDetailsResponse listCityMapImageDetailsResponse, UnmarshallerContext _ctx) { listCityMapImageDetailsResponse.setRequestId(_ctx.stringValue("ListCityMapImageDetailsResponse.RequestId")); listCityMapImageDetailsResponse.setCode(_ctx.stringValue("ListCityMapImageDetailsResponse.Code")); listCityMapImageDetailsResponse.setMessage(_ctx.stringValue("ListCityMapImageDetailsResponse.Message")); listCityMapImageDetailsResponse.setPageNumber(_ctx.longValue("ListCityMapImageDetailsResponse.PageNumber")); listCityMapImageDetailsResponse.setPageSize(_ctx.longValue("ListCityMapImageDetailsResponse.PageSize")); listCityMapImageDetailsResponse.setTotalCount(_ctx.longValue("ListCityMapImageDetailsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListCityMapImageDetailsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setPersonTargetImageStoragePath(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].PersonTargetImageStoragePath")); datas.setAgeLowerLimit(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].AgeLowerLimit")); datas.setAgeUpLimit(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].AgeUpLimit")); datas.setVehicleColor(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].VehicleColor")); datas.setTrousersColor(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].TrousersColor")); datas.setDataSourceId(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].DataSourceId")); datas.setGender(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].Gender")); datas.setAgeLowerLimitReliability(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].AgeLowerLimitReliability")); datas.setGenderCodeReliability(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].GenderCodeReliability")); datas.setVehicleClassReliability(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].VehicleClassReliability")); datas.setRecordId(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].RecordId")); datas.setAgeCodeReliability(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].AgeCodeReliability")); datas.setSourceImageStoragePath(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].SourceImageStoragePath")); datas.setVehicleClass(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].VehicleClass")); datas.setMotorTargetImageStoragePath(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].MotorTargetImageStoragePath")); datas.setCoatColor(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].CoatColor")); datas.setFaceTargetImageStoragePath(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].FaceTargetImageStoragePath")); datas.setShotTime(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].ShotTime")); datas.setVehicleColorReliability(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].VehicleColorReliability")); datas.setTrousersColorReliability(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].TrousersColorReliability")); datas.setCoatColorReliability(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].CoatColorReliability")); datas.setLeftTopX(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].LeftTopX")); datas.setLeftTopY(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].LeftTopY")); datas.setRightBottomX(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].RightBottomX")); datas.setRightBottomY(_ctx.stringValue("ListCityMapImageDetailsResponse.Data["+ i +"].RightBottomY")); data.add(datas); } listCityMapImageDetailsResponse.setData(data); return listCityMapImageDetailsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCityMapPersonFlowResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCityMapPersonFlowResponse; import com.aliyuncs.cdrs.model.v20201101.ListCityMapPersonFlowResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListCityMapPersonFlowResponseUnmarshaller { public static ListCityMapPersonFlowResponse unmarshall(ListCityMapPersonFlowResponse listCityMapPersonFlowResponse, UnmarshallerContext _ctx) { listCityMapPersonFlowResponse.setRequestId(_ctx.stringValue("ListCityMapPersonFlowResponse.RequestId")); listCityMapPersonFlowResponse.setCode(_ctx.stringValue("ListCityMapPersonFlowResponse.Code")); listCityMapPersonFlowResponse.setMessage(_ctx.stringValue("ListCityMapPersonFlowResponse.Message")); listCityMapPersonFlowResponse.setPageNumber(_ctx.longValue("ListCityMapPersonFlowResponse.PageNumber")); listCityMapPersonFlowResponse.setPageSize(_ctx.longValue("ListCityMapPersonFlowResponse.PageSize")); listCityMapPersonFlowResponse.setTotalCount(_ctx.longValue("ListCityMapPersonFlowResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListCityMapPersonFlowResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setOriginDataSourceId(_ctx.stringValue("ListCityMapPersonFlowResponse.Data["+ i +"].OriginDataSourceId")); datas.setTargetDataSourceId(_ctx.stringValue("ListCityMapPersonFlowResponse.Data["+ i +"].TargetDataSourceId")); datas.setFlowNumber(_ctx.stringValue("ListCityMapPersonFlowResponse.Data["+ i +"].FlowNumber")); datas.setFlowDirection(_ctx.stringValue("ListCityMapPersonFlowResponse.Data["+ i +"].FlowDirection")); data.add(datas); } listCityMapPersonFlowResponse.setData(data); return listCityMapPersonFlowResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCityMapRangeStatisticResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCityMapRangeStatisticResponse; import com.aliyuncs.cdrs.model.v20201101.ListCityMapRangeStatisticResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListCityMapRangeStatisticResponseUnmarshaller { public static ListCityMapRangeStatisticResponse unmarshall(ListCityMapRangeStatisticResponse listCityMapRangeStatisticResponse, UnmarshallerContext _ctx) { listCityMapRangeStatisticResponse.setRequestId(_ctx.stringValue("ListCityMapRangeStatisticResponse.RequestId")); listCityMapRangeStatisticResponse.setCode(_ctx.stringValue("ListCityMapRangeStatisticResponse.Code")); listCityMapRangeStatisticResponse.setMessage(_ctx.stringValue("ListCityMapRangeStatisticResponse.Message")); listCityMapRangeStatisticResponse.setPageNumber(_ctx.longValue("ListCityMapRangeStatisticResponse.PageNumber")); listCityMapRangeStatisticResponse.setPageSize(_ctx.longValue("ListCityMapRangeStatisticResponse.PageSize")); listCityMapRangeStatisticResponse.setTotalCount(_ctx.longValue("ListCityMapRangeStatisticResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListCityMapRangeStatisticResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDataSourceId(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].DataSourceId")); datas.setLatitude(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].Latitude")); datas.setLongitude(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].Longitude")); datas.setDataSourceName(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].DataSourceName")); datas.setCorpId(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].CorpId")); datas.setAdultValue(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].AdultValue")); datas.setWomanValue(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].WomanValue")); datas.setMotorValue(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].MotorValue")); datas.setManValue(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].ManValue")); datas.setOldValue(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].OldValue")); datas.setChildValue(_ctx.stringValue("ListCityMapRangeStatisticResponse.Data["+ i +"].ChildValue")); data.add(datas); } listCityMapRangeStatisticResponse.setData(data); return listCityMapRangeStatisticResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCorpMetricsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCorpMetricsResponse; import com.aliyuncs.cdrs.model.v20201101.ListCorpMetricsResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListCorpMetricsResponseUnmarshaller { public static ListCorpMetricsResponse unmarshall(ListCorpMetricsResponse listCorpMetricsResponse, UnmarshallerContext _ctx) { listCorpMetricsResponse.setRequestId(_ctx.stringValue("ListCorpMetricsResponse.RequestId")); listCorpMetricsResponse.setTotalCount(_ctx.integerValue("ListCorpMetricsResponse.TotalCount")); listCorpMetricsResponse.setPageSize(_ctx.integerValue("ListCorpMetricsResponse.PageSize")); listCorpMetricsResponse.setMessage(_ctx.stringValue("ListCorpMetricsResponse.Message")); listCorpMetricsResponse.setPageNumber(_ctx.integerValue("ListCorpMetricsResponse.PageNumber")); listCorpMetricsResponse.setCode(_ctx.stringValue("ListCorpMetricsResponse.Code")); listCorpMetricsResponse.setSuccess(_ctx.stringValue("ListCorpMetricsResponse.Success")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListCorpMetricsResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setCorpId(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].CorpId")); dataItem.setPersonId(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].PersonId")); dataItem.setDeviceGroupId(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].DeviceGroupId")); dataItem.setDeviceId(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].DeviceId")); dataItem.setUserGroupId(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].UserGroupId")); dataItem.setTagMetrics(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].TagMetrics")); dataItem.setTagCode(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].TagCode")); dataItem.setTagValue(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].TagValue")); dataItem.setDateId(_ctx.stringValue("ListCorpMetricsResponse.Data["+ i +"].DateId")); data.add(dataItem); } listCorpMetricsResponse.setData(data); return listCorpMetricsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCorpMetricsStatisticResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCorpMetricsStatisticResponse; import com.aliyuncs.cdrs.model.v20201101.ListCorpMetricsStatisticResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListCorpMetricsStatisticResponseUnmarshaller { public static ListCorpMetricsStatisticResponse unmarshall(ListCorpMetricsStatisticResponse listCorpMetricsStatisticResponse, UnmarshallerContext _ctx) { listCorpMetricsStatisticResponse.setRequestId(_ctx.stringValue("ListCorpMetricsStatisticResponse.RequestId")); listCorpMetricsStatisticResponse.setTotalCount(_ctx.integerValue("ListCorpMetricsStatisticResponse.TotalCount")); listCorpMetricsStatisticResponse.setPageSize(_ctx.integerValue("ListCorpMetricsStatisticResponse.PageSize")); listCorpMetricsStatisticResponse.setMessage(_ctx.stringValue("ListCorpMetricsStatisticResponse.Message")); listCorpMetricsStatisticResponse.setPageNumber(_ctx.integerValue("ListCorpMetricsStatisticResponse.PageNumber")); listCorpMetricsStatisticResponse.setCode(_ctx.stringValue("ListCorpMetricsStatisticResponse.Code")); listCorpMetricsStatisticResponse.setSuccess(_ctx.stringValue("ListCorpMetricsStatisticResponse.Success")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListCorpMetricsStatisticResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setCorpId(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].CorpId")); dataItem.setPersonId(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].PersonId")); dataItem.setDeviceGroupId(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].DeviceGroupId")); dataItem.setDeviceId(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].DeviceId")); dataItem.setUserGroupId(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].UserGroupId")); dataItem.setTagMetrics(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].TagMetrics")); dataItem.setTagCode(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].TagCode")); dataItem.setTagValue(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].TagValue")); dataItem.setDateId(_ctx.stringValue("ListCorpMetricsStatisticResponse.Data["+ i +"].DateId")); data.add(dataItem); } listCorpMetricsStatisticResponse.setData(data); return listCorpMetricsStatisticResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListCorpTrackDetailResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListCorpTrackDetailResponse; import com.aliyuncs.cdrs.model.v20201101.ListCorpTrackDetailResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListCorpTrackDetailResponseUnmarshaller { public static ListCorpTrackDetailResponse unmarshall(ListCorpTrackDetailResponse listCorpTrackDetailResponse, UnmarshallerContext _ctx) { listCorpTrackDetailResponse.setRequestId(_ctx.stringValue("ListCorpTrackDetailResponse.RequestId")); listCorpTrackDetailResponse.setCode(_ctx.stringValue("ListCorpTrackDetailResponse.Code")); listCorpTrackDetailResponse.setMessage(_ctx.stringValue("ListCorpTrackDetailResponse.Message")); listCorpTrackDetailResponse.setSuccess(_ctx.stringValue("ListCorpTrackDetailResponse.Success")); listCorpTrackDetailResponse.setTotalCount(_ctx.integerValue("ListCorpTrackDetailResponse.TotalCount")); listCorpTrackDetailResponse.setPageSize(_ctx.integerValue("ListCorpTrackDetailResponse.PageSize")); listCorpTrackDetailResponse.setPageNumber(_ctx.integerValue("ListCorpTrackDetailResponse.PageNumber")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListCorpTrackDetailResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setDate(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].Date")); dataItem.setLastTime(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].LastTime")); dataItem.setStartTime(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].StartTime")); dataItem.setEndSourceImage(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].EndSourceImage")); dataItem.setDeviceId(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].DeviceId")); dataItem.setStartTargetImage(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].StartTargetImage")); dataItem.setGroupId(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].GroupId")); dataItem.setPersonId(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].PersonId")); dataItem.setStartSourceImage(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].StartSourceImage")); dataItem.setCorpId(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].CorpId")); dataItem.setEndTargetImage(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].EndTargetImage")); dataItem.setSourceUrl(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].SourceUrl")); dataItem.setTargetUrl(_ctx.stringValue("ListCorpTrackDetailResponse.Data["+ i +"].TargetUrl")); data.add(dataItem); } listCorpTrackDetailResponse.setData(data); return listCorpTrackDetailResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListDataStatisticsByDayResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListDataStatisticsByDayResponse; import com.aliyuncs.cdrs.model.v20201101.ListDataStatisticsByDayResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListDataStatisticsByDayResponseUnmarshaller { public static ListDataStatisticsByDayResponse unmarshall(ListDataStatisticsByDayResponse listDataStatisticsByDayResponse, UnmarshallerContext _ctx) { listDataStatisticsByDayResponse.setRequestId(_ctx.stringValue("ListDataStatisticsByDayResponse.RequestId")); listDataStatisticsByDayResponse.setCode(_ctx.stringValue("ListDataStatisticsByDayResponse.Code")); listDataStatisticsByDayResponse.setMessage(_ctx.stringValue("ListDataStatisticsByDayResponse.Message")); listDataStatisticsByDayResponse.setPageNumber(_ctx.longValue("ListDataStatisticsByDayResponse.PageNumber")); listDataStatisticsByDayResponse.setPageSize(_ctx.longValue("ListDataStatisticsByDayResponse.PageSize")); listDataStatisticsByDayResponse.setTotalCount(_ctx.longValue("ListDataStatisticsByDayResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListDataStatisticsByDayResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDate(_ctx.stringValue("ListDataStatisticsByDayResponse.Data["+ i +"].Date")); datas.setCorpId(_ctx.stringValue("ListDataStatisticsByDayResponse.Data["+ i +"].CorpId")); datas.setFaceNumber(_ctx.integerValue("ListDataStatisticsByDayResponse.Data["+ i +"].FaceNumber")); datas.setBodyNumber(_ctx.integerValue("ListDataStatisticsByDayResponse.Data["+ i +"].BodyNumber")); datas.setMotorNumber(_ctx.integerValue("ListDataStatisticsByDayResponse.Data["+ i +"].MotorNumber")); datas.setNonMotorNumber(_ctx.integerValue("ListDataStatisticsByDayResponse.Data["+ i +"].NonMotorNumber")); datas.setTotalNumber(_ctx.integerValue("ListDataStatisticsByDayResponse.Data["+ i +"].TotalNumber")); data.add(datas); } listDataStatisticsByDayResponse.setData(data); return listDataStatisticsByDayResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListDataStatisticsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListDataStatisticsResponse; import com.aliyuncs.cdrs.model.v20201101.ListDataStatisticsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListDataStatisticsResponseUnmarshaller { public static ListDataStatisticsResponse unmarshall(ListDataStatisticsResponse listDataStatisticsResponse, UnmarshallerContext _ctx) { listDataStatisticsResponse.setRequestId(_ctx.stringValue("ListDataStatisticsResponse.RequestId")); listDataStatisticsResponse.setCode(_ctx.stringValue("ListDataStatisticsResponse.Code")); listDataStatisticsResponse.setMessage(_ctx.stringValue("ListDataStatisticsResponse.Message")); listDataStatisticsResponse.setPageNumber(_ctx.longValue("ListDataStatisticsResponse.PageNumber")); listDataStatisticsResponse.setPageSize(_ctx.longValue("ListDataStatisticsResponse.PageSize")); listDataStatisticsResponse.setTotalCount(_ctx.longValue("ListDataStatisticsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListDataStatisticsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setCorpId(_ctx.stringValue("ListDataStatisticsResponse.Data["+ i +"].CorpId")); datas.setNumber(_ctx.stringValue("ListDataStatisticsResponse.Data["+ i +"].Number")); data.add(datas); } listDataStatisticsResponse.setData(data); return listDataStatisticsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListDeviceDetailResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListDeviceDetailResponse; import com.aliyuncs.cdrs.model.v20201101.ListDeviceDetailResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListDeviceDetailResponseUnmarshaller { public static ListDeviceDetailResponse unmarshall(ListDeviceDetailResponse listDeviceDetailResponse, UnmarshallerContext _ctx) { listDeviceDetailResponse.setRequestId(_ctx.stringValue("ListDeviceDetailResponse.RequestId")); listDeviceDetailResponse.setCode(_ctx.stringValue("ListDeviceDetailResponse.Code")); listDeviceDetailResponse.setMessage(_ctx.stringValue("ListDeviceDetailResponse.Message")); listDeviceDetailResponse.setPageNumber(_ctx.longValue("ListDeviceDetailResponse.PageNumber")); listDeviceDetailResponse.setPageSize(_ctx.longValue("ListDeviceDetailResponse.PageSize")); listDeviceDetailResponse.setTotalCount(_ctx.longValue("ListDeviceDetailResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListDeviceDetailResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDataSourceId(_ctx.stringValue("ListDeviceDetailResponse.Data["+ i +"].DataSourceId")); datas.setCorpId(_ctx.stringValue("ListDeviceDetailResponse.Data["+ i +"].CorpId")); datas.setDataSourceName(_ctx.stringValue("ListDeviceDetailResponse.Data["+ i +"].DataSourceName")); datas.setDataSourcePoi(_ctx.stringValue("ListDeviceDetailResponse.Data["+ i +"].DataSourcePoi")); datas.setNearPoi(_ctx.stringValue("ListDeviceDetailResponse.Data["+ i +"].NearPoi")); datas.setLatitude(_ctx.stringValue("ListDeviceDetailResponse.Data["+ i +"].Latitude")); datas.setLongitude(_ctx.stringValue("ListDeviceDetailResponse.Data["+ i +"].Longitude")); data.add(datas); } listDeviceDetailResponse.setData(data); return listDeviceDetailResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListDeviceGenderStatisticsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListDeviceGenderStatisticsResponse; import com.aliyuncs.cdrs.model.v20201101.ListDeviceGenderStatisticsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListDeviceGenderStatisticsResponseUnmarshaller { public static ListDeviceGenderStatisticsResponse unmarshall(ListDeviceGenderStatisticsResponse listDeviceGenderStatisticsResponse, UnmarshallerContext _ctx) { listDeviceGenderStatisticsResponse.setRequestId(_ctx.stringValue("ListDeviceGenderStatisticsResponse.RequestId")); listDeviceGenderStatisticsResponse.setCode(_ctx.stringValue("ListDeviceGenderStatisticsResponse.Code")); listDeviceGenderStatisticsResponse.setMessage(_ctx.stringValue("ListDeviceGenderStatisticsResponse.Message")); listDeviceGenderStatisticsResponse.setTotalCount(_ctx.longValue("ListDeviceGenderStatisticsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListDeviceGenderStatisticsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDataSourceId(_ctx.stringValue("ListDeviceGenderStatisticsResponse.Data["+ i +"].DataSourceId")); datas.setGender(_ctx.stringValue("ListDeviceGenderStatisticsResponse.Data["+ i +"].Gender")); datas.setNumber(_ctx.stringValue("ListDeviceGenderStatisticsResponse.Data["+ i +"].Number")); data.add(datas); } listDeviceGenderStatisticsResponse.setData(data); return listDeviceGenderStatisticsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListDevicePersonResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListDevicePersonResponse; import com.aliyuncs.cdrs.model.v20201101.ListDevicePersonResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListDevicePersonResponseUnmarshaller { public static ListDevicePersonResponse unmarshall(ListDevicePersonResponse listDevicePersonResponse, UnmarshallerContext _ctx) { listDevicePersonResponse.setRequestId(_ctx.stringValue("ListDevicePersonResponse.RequestId")); listDevicePersonResponse.setCode(_ctx.stringValue("ListDevicePersonResponse.Code")); listDevicePersonResponse.setMessage(_ctx.stringValue("ListDevicePersonResponse.Message")); listDevicePersonResponse.setPageNumber(_ctx.longValue("ListDevicePersonResponse.PageNumber")); listDevicePersonResponse.setPageSize(_ctx.longValue("ListDevicePersonResponse.PageSize")); listDevicePersonResponse.setTotalCount(_ctx.longValue("ListDevicePersonResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListDevicePersonResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setPersonId(_ctx.stringValue("ListDevicePersonResponse.Data["+ i +"].PersonId")); datas.setDataSourceId(_ctx.stringValue("ListDevicePersonResponse.Data["+ i +"].DataSourceId")); datas.setGender(_ctx.stringValue("ListDevicePersonResponse.Data["+ i +"].Gender")); datas.setFreqNum(_ctx.stringValue("ListDevicePersonResponse.Data["+ i +"].FreqNum")); datas.setTargetPicUrlPath(_ctx.stringValue("ListDevicePersonResponse.Data["+ i +"].TargetPicUrlPath")); data.add(datas); } listDevicePersonResponse.setData(data); return listDevicePersonResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListDevicePersonStatisticsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListDevicePersonStatisticsResponse; import com.aliyuncs.cdrs.model.v20201101.ListDevicePersonStatisticsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListDevicePersonStatisticsResponseUnmarshaller { public static ListDevicePersonStatisticsResponse unmarshall(ListDevicePersonStatisticsResponse listDevicePersonStatisticsResponse, UnmarshallerContext _ctx) { listDevicePersonStatisticsResponse.setRequestId(_ctx.stringValue("ListDevicePersonStatisticsResponse.RequestId")); listDevicePersonStatisticsResponse.setCode(_ctx.stringValue("ListDevicePersonStatisticsResponse.Code")); listDevicePersonStatisticsResponse.setMessage(_ctx.stringValue("ListDevicePersonStatisticsResponse.Message")); listDevicePersonStatisticsResponse.setTotalCount(_ctx.longValue("ListDevicePersonStatisticsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListDevicePersonStatisticsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDataSourceId(_ctx.stringValue("ListDevicePersonStatisticsResponse.Data["+ i +"].DataSourceId")); datas.setShotTime(_ctx.stringValue("ListDevicePersonStatisticsResponse.Data["+ i +"].ShotTime")); datas.setNumber(_ctx.stringValue("ListDevicePersonStatisticsResponse.Data["+ i +"].Number")); data.add(datas); } listDevicePersonStatisticsResponse.setData(data); return listDevicePersonStatisticsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListDeviceRelationResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListDeviceRelationResponse; import com.aliyuncs.cdrs.model.v20201101.ListDeviceRelationResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListDeviceRelationResponseUnmarshaller { public static ListDeviceRelationResponse unmarshall(ListDeviceRelationResponse listDeviceRelationResponse, UnmarshallerContext _ctx) { listDeviceRelationResponse.setRequestId(_ctx.stringValue("ListDeviceRelationResponse.RequestId")); listDeviceRelationResponse.setCode(_ctx.stringValue("ListDeviceRelationResponse.Code")); listDeviceRelationResponse.setMessage(_ctx.stringValue("ListDeviceRelationResponse.Message")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListDeviceRelationResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setCorpId(_ctx.stringValue("ListDeviceRelationResponse.Data["+ i +"].CorpId")); data.add(dataItem); } listDeviceRelationResponse.setData(data); return listDeviceRelationResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListMapRouteDetailsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListMapRouteDetailsResponse; import com.aliyuncs.cdrs.model.v20201101.ListMapRouteDetailsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListMapRouteDetailsResponseUnmarshaller { public static ListMapRouteDetailsResponse unmarshall(ListMapRouteDetailsResponse listMapRouteDetailsResponse, UnmarshallerContext _ctx) { listMapRouteDetailsResponse.setRequestId(_ctx.stringValue("ListMapRouteDetailsResponse.RequestId")); listMapRouteDetailsResponse.setCode(_ctx.stringValue("ListMapRouteDetailsResponse.Code")); listMapRouteDetailsResponse.setMessage(_ctx.stringValue("ListMapRouteDetailsResponse.Message")); listMapRouteDetailsResponse.setPageNumber(_ctx.longValue("ListMapRouteDetailsResponse.PageNumber")); listMapRouteDetailsResponse.setPageSize(_ctx.longValue("ListMapRouteDetailsResponse.PageSize")); listMapRouteDetailsResponse.setTotalCount(_ctx.longValue("ListMapRouteDetailsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListMapRouteDetailsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setDestination(_ctx.stringValue("ListMapRouteDetailsResponse.Data["+ i +"].Destination")); datas.setOrigin(_ctx.stringValue("ListMapRouteDetailsResponse.Data["+ i +"].Origin")); datas.setRoute(_ctx.stringValue("ListMapRouteDetailsResponse.Data["+ i +"].Route")); datas.setType(_ctx.stringValue("ListMapRouteDetailsResponse.Data["+ i +"].Type")); data.add(datas); } listMapRouteDetailsResponse.setData(data); return listMapRouteDetailsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListMetricsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListMetricsResponse; import com.aliyuncs.cdrs.model.v20201101.ListMetricsResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListMetricsResponseUnmarshaller { public static ListMetricsResponse unmarshall(ListMetricsResponse listMetricsResponse, UnmarshallerContext _ctx) { listMetricsResponse.setRequestId(_ctx.stringValue("ListMetricsResponse.RequestId")); listMetricsResponse.setCode(_ctx.stringValue("ListMetricsResponse.Code")); listMetricsResponse.setMessage(_ctx.stringValue("ListMetricsResponse.Message")); listMetricsResponse.setPageNumber(_ctx.stringValue("ListMetricsResponse.PageNumber")); listMetricsResponse.setPageSize(_ctx.stringValue("ListMetricsResponse.PageSize")); listMetricsResponse.setTotalCount(_ctx.stringValue("ListMetricsResponse.TotalCount")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListMetricsResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setDateTime(_ctx.stringValue("ListMetricsResponse.Data["+ i +"].DateTime")); dataItem.setTagCode(_ctx.stringValue("ListMetricsResponse.Data["+ i +"].TagCode")); dataItem.setTagValue(_ctx.stringValue("ListMetricsResponse.Data["+ i +"].TagValue")); dataItem.setTagMetric(_ctx.stringValue("ListMetricsResponse.Data["+ i +"].TagMetric")); dataItem.setCorpId(_ctx.stringValue("ListMetricsResponse.Data["+ i +"].CorpId")); data.add(dataItem); } listMetricsResponse.setData(data); return listMetricsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListPersonDetailsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListPersonDetailsResponse; import com.aliyuncs.cdrs.model.v20201101.ListPersonDetailsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListPersonDetailsResponseUnmarshaller { public static ListPersonDetailsResponse unmarshall(ListPersonDetailsResponse listPersonDetailsResponse, UnmarshallerContext _ctx) { listPersonDetailsResponse.setRequestId(_ctx.stringValue("ListPersonDetailsResponse.RequestId")); listPersonDetailsResponse.setCode(_ctx.stringValue("ListPersonDetailsResponse.Code")); listPersonDetailsResponse.setMessage(_ctx.stringValue("ListPersonDetailsResponse.Message")); listPersonDetailsResponse.setPageNumber(_ctx.longValue("ListPersonDetailsResponse.PageNumber")); listPersonDetailsResponse.setPageSize(_ctx.longValue("ListPersonDetailsResponse.PageSize")); listPersonDetailsResponse.setTotalCount(_ctx.longValue("ListPersonDetailsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListPersonDetailsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setPersonId(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].PersonId")); datas.setGender(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].Gender")); datas.setAge(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].Age")); datas.setProfession(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].Profession")); datas.setAddress(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].Address")); datas.setTransportation(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].Transportation")); datas.setPersonType(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].PersonType")); datas.setHotSpotAddress(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].HotSpotAddress")); datas.setUpdateTime(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].UpdateTime")); datas.setPreferredColor(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].PreferredColor")); datas.setFaceSourceImage(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].FaceSourceImage")); datas.setFaceTargetImage(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].FaceTargetImage")); datas.setBodySourceImage(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].BodySourceImage")); datas.setBodyTargetImage(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].BodyTargetImage")); datas.setPrefOutTime(_ctx.stringValue("ListPersonDetailsResponse.Data["+ i +"].PrefOutTime")); data.add(datas); } listPersonDetailsResponse.setData(data); return listPersonDetailsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListPersonResultResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListPersonResultResponse; import com.aliyuncs.cdrs.model.v20201101.ListPersonResultResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListPersonResultResponseUnmarshaller { public static ListPersonResultResponse unmarshall(ListPersonResultResponse listPersonResultResponse, UnmarshallerContext _ctx) { listPersonResultResponse.setRequestId(_ctx.stringValue("ListPersonResultResponse.RequestId")); listPersonResultResponse.setCode(_ctx.stringValue("ListPersonResultResponse.Code")); listPersonResultResponse.setMessage(_ctx.stringValue("ListPersonResultResponse.Message")); listPersonResultResponse.setPageNumber(_ctx.longValue("ListPersonResultResponse.PageNumber")); listPersonResultResponse.setPageSize(_ctx.longValue("ListPersonResultResponse.PageSize")); listPersonResultResponse.setTotalCount(_ctx.longValue("ListPersonResultResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListPersonResultResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setPersonId(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].PersonId")); datas.setGender(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].Gender")); datas.setAge(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].Age")); datas.setProfession(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].Profession")); datas.setAddress(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].Address")); datas.setTransportation(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].Transportation")); datas.setPersonType(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].PersonType")); datas.setHotSpotAddress(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].HotSpotAddress")); datas.setUpdateTime(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].UpdateTime")); datas.setTargetUrl(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].TargetUrl")); datas.setSourceUrl(_ctx.stringValue("ListPersonResultResponse.Data["+ i +"].SourceUrl")); data.add(datas); } listPersonResultResponse.setData(data); return listPersonResultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListPersonTagResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListPersonTagResponse; import com.aliyuncs.cdrs.model.v20201101.ListPersonTagResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListPersonTagResponseUnmarshaller { public static ListPersonTagResponse unmarshall(ListPersonTagResponse listPersonTagResponse, UnmarshallerContext _ctx) { listPersonTagResponse.setRequestId(_ctx.stringValue("ListPersonTagResponse.RequestId")); listPersonTagResponse.setCode(_ctx.stringValue("ListPersonTagResponse.Code")); listPersonTagResponse.setMessage(_ctx.stringValue("ListPersonTagResponse.Message")); listPersonTagResponse.setPageNumber(_ctx.longValue("ListPersonTagResponse.PageNumber")); listPersonTagResponse.setPageSize(_ctx.longValue("ListPersonTagResponse.PageSize")); listPersonTagResponse.setTotalCount(_ctx.longValue("ListPersonTagResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListPersonTagResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setCorpId(_ctx.stringValue("ListPersonTagResponse.Data["+ i +"].CorpId")); datas.setTagValue(_ctx.stringValue("ListPersonTagResponse.Data["+ i +"].TagValue")); datas.setValue(_ctx.stringValue("ListPersonTagResponse.Data["+ i +"].Value")); data.add(datas); } listPersonTagResponse.setData(data); return listPersonTagResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListPersonTopResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListPersonTopResponse; import com.aliyuncs.cdrs.model.v20201101.ListPersonTopResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListPersonTopResponseUnmarshaller { public static ListPersonTopResponse unmarshall(ListPersonTopResponse listPersonTopResponse, UnmarshallerContext _ctx) { listPersonTopResponse.setRequestId(_ctx.stringValue("ListPersonTopResponse.RequestId")); listPersonTopResponse.setCode(_ctx.stringValue("ListPersonTopResponse.Code")); listPersonTopResponse.setMessage(_ctx.stringValue("ListPersonTopResponse.Message")); listPersonTopResponse.setPageNumber(_ctx.longValue("ListPersonTopResponse.PageNumber")); listPersonTopResponse.setPageSize(_ctx.longValue("ListPersonTopResponse.PageSize")); listPersonTopResponse.setTotalCount(_ctx.longValue("ListPersonTopResponse.TotalCount")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListPersonTopResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setCorpId(_ctx.stringValue("ListPersonTopResponse.Data["+ i +"].CorpId")); dataItem.setPersonId(_ctx.stringValue("ListPersonTopResponse.Data["+ i +"].PersonId")); dataItem.setPoiId(_ctx.stringValue("ListPersonTopResponse.Data["+ i +"].PoiId")); dataItem.setPoiName(_ctx.stringValue("ListPersonTopResponse.Data["+ i +"].PoiName")); dataItem.setPassHour(_ctx.stringValue("ListPersonTopResponse.Data["+ i +"].PassHour")); dataItem.setFrequency(_ctx.stringValue("ListPersonTopResponse.Data["+ i +"].Frequency")); data.add(dataItem); } listPersonTopResponse.setData(data); return listPersonTopResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListPersonTraceResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListPersonTraceResponse; import com.aliyuncs.cdrs.model.v20201101.ListPersonTraceResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListPersonTraceResponseUnmarshaller { public static ListPersonTraceResponse unmarshall(ListPersonTraceResponse listPersonTraceResponse, UnmarshallerContext _ctx) { listPersonTraceResponse.setRequestId(_ctx.stringValue("ListPersonTraceResponse.RequestId")); listPersonTraceResponse.setCode(_ctx.stringValue("ListPersonTraceResponse.Code")); listPersonTraceResponse.setMessage(_ctx.stringValue("ListPersonTraceResponse.Message")); listPersonTraceResponse.setSuccess(_ctx.stringValue("ListPersonTraceResponse.Success")); listPersonTraceResponse.setTotalCount(_ctx.integerValue("ListPersonTraceResponse.TotalCount")); listPersonTraceResponse.setPageSize(_ctx.integerValue("ListPersonTraceResponse.PageSize")); listPersonTraceResponse.setPageNumber(_ctx.integerValue("ListPersonTraceResponse.PageNumber")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListPersonTraceResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setDate(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].Date")); dataItem.setLastTime(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].LastTime")); dataItem.setStartTime(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].StartTime")); dataItem.setEndSourceImage(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].EndSourceImage")); dataItem.setDeviceId(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].DeviceId")); dataItem.setStartTargetImage(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].StartTargetImage")); dataItem.setGroupId(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].GroupId")); dataItem.setPersonId(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].PersonId")); dataItem.setStartSourceImage(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].StartSourceImage")); dataItem.setCorpId(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].CorpId")); dataItem.setEndTargetImage(_ctx.stringValue("ListPersonTraceResponse.Data["+ i +"].EndTargetImage")); data.add(dataItem); } listPersonTraceResponse.setData(data); return listPersonTraceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListPersonTrackResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListPersonTrackResponse; import com.aliyuncs.cdrs.model.v20201101.ListPersonTrackResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListPersonTrackResponseUnmarshaller { public static ListPersonTrackResponse unmarshall(ListPersonTrackResponse listPersonTrackResponse, UnmarshallerContext _ctx) { listPersonTrackResponse.setRequestId(_ctx.stringValue("ListPersonTrackResponse.RequestId")); listPersonTrackResponse.setCode(_ctx.stringValue("ListPersonTrackResponse.Code")); listPersonTrackResponse.setMessage(_ctx.stringValue("ListPersonTrackResponse.Message")); listPersonTrackResponse.setPageNumber(_ctx.longValue("ListPersonTrackResponse.PageNumber")); listPersonTrackResponse.setPageSize(_ctx.longValue("ListPersonTrackResponse.PageSize")); listPersonTrackResponse.setTotalCount(_ctx.longValue("ListPersonTrackResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListPersonTrackResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setPersonId(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].PersonId")); datas.setCorpId(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].CorpId")); datas.setDataSourceId(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].DataSourceId")); datas.setDataSourceName(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].DataSourceName")); datas.setPicUrlPath(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].PicUrlPath")); datas.setTargetPicUrlPath(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].TargetPicUrlPath")); datas.setRightBottomY(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].RightBottomY")); datas.setRightBottomX(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].RightBottomX")); datas.setLeftTopY(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].LeftTopY")); datas.setLeftTopX(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].LeftTopX")); datas.setShotTime(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].ShotTime")); datas.setOrder(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].Order")); datas.setLongitude(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].Longitude")); datas.setLatitude(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].Latitude")); datas.setSourceUrl(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].SourceUrl")); datas.setTargetUrl(_ctx.stringValue("ListPersonTrackResponse.Data["+ i +"].TargetUrl")); data.add(datas); } listPersonTrackResponse.setData(data); return listPersonTrackResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListRangeDeviceResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListRangeDeviceResponse; import com.aliyuncs.cdrs.model.v20201101.ListRangeDeviceResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListRangeDeviceResponseUnmarshaller { public static ListRangeDeviceResponse unmarshall(ListRangeDeviceResponse listRangeDeviceResponse, UnmarshallerContext _ctx) { listRangeDeviceResponse.setRequestId(_ctx.stringValue("ListRangeDeviceResponse.RequestId")); listRangeDeviceResponse.setCode(_ctx.stringValue("ListRangeDeviceResponse.Code")); listRangeDeviceResponse.setMessage(_ctx.stringValue("ListRangeDeviceResponse.Message")); listRangeDeviceResponse.setPageNumber(_ctx.longValue("ListRangeDeviceResponse.PageNumber")); listRangeDeviceResponse.setPageSize(_ctx.longValue("ListRangeDeviceResponse.PageSize")); listRangeDeviceResponse.setTotalCount(_ctx.longValue("ListRangeDeviceResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListRangeDeviceResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setCorpId(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].CorpId")); datas.setDataSourceId(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].DataSourceId")); datas.setNearPoi(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].NearPoi")); datas.setDistance(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].Distance")); datas.setDataSourceIdPoi(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].DataSourceIdPoi")); datas.setLatitude(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].Latitude")); datas.setDataSourceIdName(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].DataSourceIdName")); datas.setLongitude(_ctx.stringValue("ListRangeDeviceResponse.Data["+ i +"].Longitude")); data.add(datas); } listRangeDeviceResponse.setData(data); return listRangeDeviceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListStorageStatisticsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListStorageStatisticsResponse; import com.aliyuncs.cdrs.model.v20201101.ListStorageStatisticsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListStorageStatisticsResponseUnmarshaller { public static ListStorageStatisticsResponse unmarshall(ListStorageStatisticsResponse listStorageStatisticsResponse, UnmarshallerContext _ctx) { listStorageStatisticsResponse.setRequestId(_ctx.stringValue("ListStorageStatisticsResponse.RequestId")); listStorageStatisticsResponse.setCode(_ctx.stringValue("ListStorageStatisticsResponse.Code")); listStorageStatisticsResponse.setMessage(_ctx.stringValue("ListStorageStatisticsResponse.Message")); listStorageStatisticsResponse.setTotalCount(_ctx.longValue("ListStorageStatisticsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListStorageStatisticsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setCorpId(_ctx.stringValue("ListStorageStatisticsResponse.Data["+ i +"].CorpId")); datas.setNumber(_ctx.stringValue("ListStorageStatisticsResponse.Data["+ i +"].Number")); datas.setTotalStore(_ctx.stringValue("ListStorageStatisticsResponse.Data["+ i +"].TotalStore")); datas.setUnusedStore(_ctx.stringValue("ListStorageStatisticsResponse.Data["+ i +"].UnusedStore")); datas.setUsedStore(_ctx.stringValue("ListStorageStatisticsResponse.Data["+ i +"].UsedStore")); data.add(datas); } listStorageStatisticsResponse.setData(data); return listStorageStatisticsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListStructureStatisticsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListStructureStatisticsResponse; import com.aliyuncs.cdrs.model.v20201101.ListStructureStatisticsResponse.Datas; import com.aliyuncs.transform.UnmarshallerContext; public class ListStructureStatisticsResponseUnmarshaller { public static ListStructureStatisticsResponse unmarshall(ListStructureStatisticsResponse listStructureStatisticsResponse, UnmarshallerContext _ctx) { listStructureStatisticsResponse.setRequestId(_ctx.stringValue("ListStructureStatisticsResponse.RequestId")); listStructureStatisticsResponse.setCode(_ctx.stringValue("ListStructureStatisticsResponse.Code")); listStructureStatisticsResponse.setMessage(_ctx.stringValue("ListStructureStatisticsResponse.Message")); listStructureStatisticsResponse.setPageNumber(_ctx.longValue("ListStructureStatisticsResponse.PageNumber")); listStructureStatisticsResponse.setPageSize(_ctx.longValue("ListStructureStatisticsResponse.PageSize")); listStructureStatisticsResponse.setTotalCount(_ctx.longValue("ListStructureStatisticsResponse.TotalCount")); List<Datas> data = new ArrayList<Datas>(); for (int i = 0; i < _ctx.lengthValue("ListStructureStatisticsResponse.Data.Length"); i++) { Datas datas = new Datas(); datas.setNumber(_ctx.stringValue("ListStructureStatisticsResponse.Data["+ i +"].Number")); datas.setCorpId(_ctx.stringValue("ListStructureStatisticsResponse.Data["+ i +"].CorpId")); data.add(datas); } listStructureStatisticsResponse.setData(data); return listStructureStatisticsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform
java-sources/com/aliyun/aliyun-java-sdk-cdrs/1.0.8/com/aliyuncs/cdrs/transform/v20201101/ListTagMetricsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cdrs.transform.v20201101; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cdrs.model.v20201101.ListTagMetricsResponse; import com.aliyuncs.cdrs.model.v20201101.ListTagMetricsResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class ListTagMetricsResponseUnmarshaller { public static ListTagMetricsResponse unmarshall(ListTagMetricsResponse listTagMetricsResponse, UnmarshallerContext _ctx) { listTagMetricsResponse.setRequestId(_ctx.stringValue("ListTagMetricsResponse.RequestId")); listTagMetricsResponse.setCode(_ctx.stringValue("ListTagMetricsResponse.Code")); listTagMetricsResponse.setMessage(_ctx.stringValue("ListTagMetricsResponse.Message")); listTagMetricsResponse.setPageNumber(_ctx.stringValue("ListTagMetricsResponse.PageNumber")); listTagMetricsResponse.setPageSize(_ctx.stringValue("ListTagMetricsResponse.PageSize")); listTagMetricsResponse.setTotalCount(_ctx.stringValue("ListTagMetricsResponse.TotalCount")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("ListTagMetricsResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setDateTime(_ctx.stringValue("ListTagMetricsResponse.Data["+ i +"].DateTime")); dataItem.setTagCode(_ctx.stringValue("ListTagMetricsResponse.Data["+ i +"].TagCode")); dataItem.setTagValue(_ctx.stringValue("ListTagMetricsResponse.Data["+ i +"].TagValue")); dataItem.setTagMetric(_ctx.stringValue("ListTagMetricsResponse.Data["+ i +"].TagMetric")); dataItem.setCorpId(_ctx.stringValue("ListTagMetricsResponse.Data["+ i +"].CorpId")); data.add(dataItem); } listTagMetricsResponse.setData(data); return listTagMetricsResponse; } }