com.aliyuncs.vcs.transform.v20200515.GetProfileListResponseUnmarshaller 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.GetProfileListResponse;
import com.aliyuncs.vcs.model.v20200515.GetProfileListResponse.Data;
import com.aliyuncs.vcs.model.v20200515.GetProfileListResponse.Data.RecordsItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetProfileListResponseUnmarshaller {
public static GetProfileListResponse unmarshall(GetProfileListResponse getProfileListResponse, UnmarshallerContext _ctx) {
getProfileListResponse.setRequestId(_ctx.stringValue("GetProfileListResponse.RequestId"));
getProfileListResponse.setMessage(_ctx.stringValue("GetProfileListResponse.Message"));
getProfileListResponse.setCode(_ctx.stringValue("GetProfileListResponse.Code"));
Data data = new Data();
data.setSuccess(_ctx.booleanValue("GetProfileListResponse.Data.Success"));
data.setPageNumber(_ctx.longValue("GetProfileListResponse.Data.PageNumber"));
data.setPageSize(_ctx.longValue("GetProfileListResponse.Data.PageSize"));
data.setTotal(_ctx.longValue("GetProfileListResponse.Data.Total"));
List records = new ArrayList();
for (int i = 0; i < _ctx.lengthValue("GetProfileListResponse.Data.Records.Length"); i++) {
RecordsItem recordsItem = new RecordsItem();
recordsItem.setCatalogId(_ctx.integerValue("GetProfileListResponse.Data.Records["+ i +"].CatalogId"));
recordsItem.setProfileId(_ctx.integerValue("GetProfileListResponse.Data.Records["+ i +"].ProfileId"));
recordsItem.setIdNumber(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].IdNumber"));
recordsItem.setSceneType(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].SceneType"));
recordsItem.setIsvSubId(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].IsvSubId"));
recordsItem.setGender(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].Gender"));
recordsItem.setFaceUrl(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].FaceUrl"));
recordsItem.setBizId(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].BizId"));
recordsItem.setSearchMatchingRate(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].SearchMatchingRate"));
recordsItem.setName(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].Name"));
recordsItem.setPersonId(_ctx.stringValue("GetProfileListResponse.Data.Records["+ i +"].PersonId"));
records.add(recordsItem);
}
data.setRecords(records);
getProfileListResponse.setData(data);
return getProfileListResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy