com.aliyuncs.vcs.transform.v20200515.DescribeIpcsResponseUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-vcs Show documentation
Show all versions of aliyun-java-sdk-vcs Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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.vcs.transform.v20200515;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.vcs.model.v20200515.DescribeIpcsResponse;
import com.aliyuncs.vcs.model.v20200515.DescribeIpcsResponse.Data;
import com.aliyuncs.vcs.model.v20200515.DescribeIpcsResponse.Data.RecordsItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeIpcsResponseUnmarshaller {
public static DescribeIpcsResponse unmarshall(DescribeIpcsResponse describeIpcsResponse, UnmarshallerContext _ctx) {
describeIpcsResponse.setRequestId(_ctx.stringValue("DescribeIpcsResponse.RequestId"));
describeIpcsResponse.setCode(_ctx.stringValue("DescribeIpcsResponse.Code"));
describeIpcsResponse.setMessage(_ctx.stringValue("DescribeIpcsResponse.Message"));
Data data = new Data();
data.setPageNum(_ctx.longValue("DescribeIpcsResponse.Data.PageNum"));
data.setPageSize(_ctx.longValue("DescribeIpcsResponse.Data.PageSize"));
data.setTotalCount(_ctx.longValue("DescribeIpcsResponse.Data.TotalCount"));
data.setTotalPage(_ctx.longValue("DescribeIpcsResponse.Data.TotalPage"));
List records = new ArrayList();
for (int i = 0; i < _ctx.lengthValue("DescribeIpcsResponse.Data.Records.Length"); i++) {
RecordsItem recordsItem = new RecordsItem();
recordsItem.setCorpId(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].CorpId"));
recordsItem.setCreateTime(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].CreateTime"));
recordsItem.setModifyTime(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].ModifyTime"));
recordsItem.setDeviceAddress(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceAddress"));
recordsItem.setDeviceId(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceId"));
recordsItem.setDeviceName(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceName"));
recordsItem.setDeviceType(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceType"));
recordsItem.setInProtocol(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].InProtocol"));
recordsItem.setLatitude(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].Latitude"));
recordsItem.setLongitude(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].Longitude"));
recordsItem.setDeviceStatus(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceStatus"));
recordsItem.setStreamStatus(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].StreamStatus"));
recordsItem.setStreamAction(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].StreamAction"));
recordsItem.setDeviceVendor(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceVendor"));
recordsItem.setServerId(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].ServerId"));
recordsItem.setPassword(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].Password"));
recordsItem.setServerPort(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].ServerPort"));
recordsItem.setServerIp(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].ServerIp"));
recordsItem.setDeviceSite(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceSite"));
recordsItem.setDeviceResolution(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceResolution"));
recordsItem.setDeviceRate(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceRate"));
recordsItem.setParentDeviceId(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].ParentDeviceId"));
recordsItem.setDeviceModel(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DeviceModel"));
recordsItem.setDatasourceType(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].DatasourceType"));
recordsItem.setProjectName(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].ProjectName"));
recordsItem.setRegionName(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].RegionName"));
recordsItem.setVap(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].Vap"));
recordsItem.setCameraType(_ctx.stringValue("DescribeIpcsResponse.Data.Records["+ i +"].CameraType"));
records.add(recordsItem);
}
data.setRecords(records);
describeIpcsResponse.setData(data);
return describeIpcsResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy