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

com.aliyuncs.miniapplcdp.transform.v20200113.BatchCreateModelResponseUnmarshaller Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

The newest version!
/*
 * 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.miniapplcdp.transform.v20200113;

import java.util.ArrayList;
import java.util.List;

import com.aliyuncs.miniapplcdp.model.v20200113.BatchCreateModelResponse;
import com.aliyuncs.miniapplcdp.model.v20200113.BatchCreateModelResponse.Data;
import com.aliyuncs.miniapplcdp.model.v20200113.BatchCreateModelResponse.Data.ModelItem;
import java.util.Map;
import com.aliyuncs.transform.UnmarshallerContext;


public class BatchCreateModelResponseUnmarshaller {

	public static BatchCreateModelResponse unmarshall(BatchCreateModelResponse batchCreateModelResponse, UnmarshallerContext _ctx) {
		
		batchCreateModelResponse.setRequestId(_ctx.stringValue("BatchCreateModelResponse.RequestId"));

		Data data = new Data();

		List items = new ArrayList();
		for (int i = 0; i < _ctx.lengthValue("BatchCreateModelResponse.Data.Items.Length"); i++) {
			ModelItem modelItem = new ModelItem();
			modelItem.setAppId(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].AppId"));
			modelItem.setContent(_ctx.mapValue("BatchCreateModelResponse.Data.Items["+ i +"].Content"));
			modelItem.setCreateTime(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].CreateTime"));
			modelItem.setDescription(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].Description"));
			modelItem.setId(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].Id"));
			modelItem.setLinkModelId(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].LinkModelId"));
			modelItem.setLinkModuleId(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].LinkModuleId"));
			modelItem.setLinked(_ctx.booleanValue("BatchCreateModelResponse.Data.Items["+ i +"].Linked"));
			modelItem.setModelId(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].ModelId"));
			modelItem.setModifiedTime(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].ModifiedTime"));
			modelItem.setModuleId(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].ModuleId"));
			modelItem.setModelName(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].ModelName"));
			modelItem.setProps(_ctx.mapValue("BatchCreateModelResponse.Data.Items["+ i +"].Props"));
			modelItem.setRevision(_ctx.integerValue("BatchCreateModelResponse.Data.Items["+ i +"].Revision"));
			modelItem.setSchemaVersion(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].SchemaVersion"));
			modelItem.setModelStatus(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].ModelStatus"));
			modelItem.setSubType(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].SubType"));
			modelItem.setModelType(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].ModelType"));
			modelItem.setVisibility(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].Visibility"));
			modelItem.setModelDigest(_ctx.stringValue("BatchCreateModelResponse.Data.Items["+ i +"].ModelDigest"));

			List> attributes = _ctx.listMapValue("BatchCreateModelResponse.Data.Items["+ i +"].Attributes");
			modelItem.setAttributes(attributes);

			items.add(modelItem);
		}
		data.setItems(items);
		batchCreateModelResponse.setData(data);
	 
	 	return batchCreateModelResponse;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy