index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryCityRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryCityRequest extends RpcAcsRequest<QueryCityResponse> { private String cityEnName; private String cityCnName; private Integer offset; private String cityCode; private Integer pageSize; private Integer currentPage; private String order; public QueryCityRequest() { super("brinekingdom", "2019-06-27", "QueryCity"); setMethod(MethodType.POST); } public String getCityEnName() { return this.cityEnName; } public void setCityEnName(String cityEnName) { this.cityEnName = cityEnName; if(cityEnName != null){ putQueryParameter("CityEnName", cityEnName); } } public String getCityCnName() { return this.cityCnName; } public void setCityCnName(String cityCnName) { this.cityCnName = cityCnName; if(cityCnName != null){ putQueryParameter("CityCnName", cityCnName); } } public Integer getOffset() { return this.offset; } public void setOffset(Integer offset) { this.offset = offset; if(offset != null){ putQueryParameter("Offset", offset.toString()); } } public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; if(cityCode != null){ putQueryParameter("CityCode", cityCode); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putQueryParameter("Order", order); } } @Override public Class<QueryCityResponse> getResponseClass() { return QueryCityResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryCityResponse.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.brinekingdom.model.v20190627; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.QueryCityResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCityResponse extends AcsResponse { private String _class; private String errorMessage; private Boolean success; private String resultCode; private String requestId; private List<ResultItem> result; public String get_Class() { return this._class; } public void set_Class(String _class) { this._class = _class; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String cityAlias; private String cityCnName; private String cityCode; private String cityEnName; private Long cityId; private String _class; private String creator; private String creatorNic; private Long lastUpdate; private String modifier; private String modifierNic; public String getCityAlias() { return this.cityAlias; } public void setCityAlias(String cityAlias) { this.cityAlias = cityAlias; } public String getCityCnName() { return this.cityCnName; } public void setCityCnName(String cityCnName) { this.cityCnName = cityCnName; } public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getCityEnName() { return this.cityEnName; } public void setCityEnName(String cityEnName) { this.cityEnName = cityEnName; } public Long getCityId() { return this.cityId; } public void setCityId(Long cityId) { this.cityId = cityId; } public String get_Class() { return this._class; } public void set_Class(String _class) { this._class = _class; } public String getCreator() { return this.creator; } public void setCreator(String creator) { this.creator = creator; } public String getCreatorNic() { return this.creatorNic; } public void setCreatorNic(String creatorNic) { this.creatorNic = creatorNic; } public Long getLastUpdate() { return this.lastUpdate; } public void setLastUpdate(Long lastUpdate) { this.lastUpdate = lastUpdate; } public String getModifier() { return this.modifier; } public void setModifier(String modifier) { this.modifier = modifier; } public String getModifierNic() { return this.modifierNic; } public void setModifierNic(String modifierNic) { this.modifierNic = modifierNic; } } @Override public QueryCityResponse getInstance(UnmarshallerContext context) { return QueryCityResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryProjectTypeRequest extends RpcAcsRequest<QueryProjectTypeResponse> { private String projectType; public QueryProjectTypeRequest() { super("brinekingdom", "2019-06-27", "QueryProjectType"); setMethod(MethodType.POST); } public String getProjectType() { return this.projectType; } public void setProjectType(String projectType) { this.projectType = projectType; if(projectType != null){ putQueryParameter("ProjectType", projectType); } } @Override public Class<QueryProjectTypeResponse> getResponseClass() { return QueryProjectTypeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryProjectTypeResponse.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.brinekingdom.model.v20190627; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.QueryProjectTypeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryProjectTypeResponse extends AcsResponse { private String _class; private String errorMessage; private Boolean success; private String resultCode; private String requestId; private List<ResultItem> result; public String get_Class() { return this._class; } public void set_Class(String _class) { this._class = _class; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String _class; private Long id; private String projectType; private String projectTypeName; public String get_Class() { return this._class; } public void set_Class(String _class) { this._class = _class; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getProjectType() { return this.projectType; } public void setProjectType(String projectType) { this.projectType = projectType; } public String getProjectTypeName() { return this.projectTypeName; } public void setProjectTypeName(String projectTypeName) { this.projectTypeName = projectTypeName; } } @Override public QueryProjectTypeResponse getInstance(UnmarshallerContext context) { return QueryProjectTypeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryQuotaPlanScheduleRequest extends RpcAcsRequest<QueryQuotaPlanScheduleResponse> { private List<Long> quotaPlanIdss; public QueryQuotaPlanScheduleRequest() { super("brinekingdom", "2019-06-27", "QueryQuotaPlanSchedule"); setMethod(MethodType.POST); } public List<Long> getQuotaPlanIdss() { return this.quotaPlanIdss; } public void setQuotaPlanIdss(List<Long> quotaPlanIdss) { this.quotaPlanIdss = quotaPlanIdss; if (quotaPlanIdss != null) { for (int i = 0; i < quotaPlanIdss.size(); i++) { putQueryParameter("QuotaPlanIds." + (i + 1) , quotaPlanIdss.get(i)); } } } @Override public Class<QueryQuotaPlanScheduleResponse> getResponseClass() { return QueryQuotaPlanScheduleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryQuotaPlanScheduleResponse.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.brinekingdom.model.v20190627; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.QueryQuotaPlanScheduleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryQuotaPlanScheduleResponse extends AcsResponse { private String resultCode; private String requestId; private String errorMessage; private Boolean success; private List<ResultItem> result; public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String status; private String creatorNick; private Long quotaPlanId; private Long deliveryDate; private String configModel; private String tenantName; private String creatorWorkNo; private Integer quantity; private String productCode; private List<LadingScheduleListItem> ladingScheduleList; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getCreatorNick() { return this.creatorNick; } public void setCreatorNick(String creatorNick) { this.creatorNick = creatorNick; } public Long getQuotaPlanId() { return this.quotaPlanId; } public void setQuotaPlanId(Long quotaPlanId) { this.quotaPlanId = quotaPlanId; } public Long getDeliveryDate() { return this.deliveryDate; } public void setDeliveryDate(Long deliveryDate) { this.deliveryDate = deliveryDate; } public String getConfigModel() { return this.configModel; } public void setConfigModel(String configModel) { this.configModel = configModel; } public String getTenantName() { return this.tenantName; } public void setTenantName(String tenantName) { this.tenantName = tenantName; } public String getCreatorWorkNo() { return this.creatorWorkNo; } public void setCreatorWorkNo(String creatorWorkNo) { this.creatorWorkNo = creatorWorkNo; } public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public List<LadingScheduleListItem> getLadingScheduleList() { return this.ladingScheduleList; } public void setLadingScheduleList(List<LadingScheduleListItem> ladingScheduleList) { this.ladingScheduleList = ladingScheduleList; } public static class LadingScheduleListItem { private String status; private Integer quantity; private Integer deliveryQuantity; private String ladingId; private List<ServerScheduleListItem> serverScheduleList; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } public Integer getDeliveryQuantity() { return this.deliveryQuantity; } public void setDeliveryQuantity(Integer deliveryQuantity) { this.deliveryQuantity = deliveryQuantity; } public String getLadingId() { return this.ladingId; } public void setLadingId(String ladingId) { this.ladingId = ladingId; } public List<ServerScheduleListItem> getServerScheduleList() { return this.serverScheduleList; } public void setServerScheduleList(List<ServerScheduleListItem> serverScheduleList) { this.serverScheduleList = serverScheduleList; } public static class ServerScheduleListItem { private String type; private String serialNumber; private String status; private Boolean delivery; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getSerialNumber() { return this.serialNumber; } public void setSerialNumber(String serialNumber) { this.serialNumber = serialNumber; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Boolean getDelivery() { return this.delivery; } public void setDelivery(Boolean delivery) { this.delivery = delivery; } } } } @Override public QueryQuotaPlanScheduleResponse getInstance(UnmarshallerContext context) { return QueryQuotaPlanScheduleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QuerySupplyAreaRequest extends RpcAcsRequest<QuerySupplyAreaResponse> { @SerializedName("areaList") private List<String> areaList; @SerializedName("idcList") private List<String> idcList; public QuerySupplyAreaRequest() { super("brinekingdom", "2019-06-27", "QuerySupplyArea"); setMethod(MethodType.POST); } public List<String> getAreaList() { return this.areaList; } public void setAreaList(List<String> areaList) { this.areaList = areaList; if (areaList != null) { putQueryParameter("AreaList" , new Gson().toJson(areaList)); } } public List<String> getIdcList() { return this.idcList; } public void setIdcList(List<String> idcList) { this.idcList = idcList; if (idcList != null) { putQueryParameter("IdcList" , new Gson().toJson(idcList)); } } @Override public Class<QuerySupplyAreaResponse> getResponseClass() { return QuerySupplyAreaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QuerySupplyAreaResponse.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.brinekingdom.model.v20190627; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.QuerySupplyAreaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QuerySupplyAreaResponse extends AcsResponse { private String message; private Boolean success; private String requestId; private List<ResultItem> result; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String area; private String _class; private String country; private String idc; public String getArea() { return this.area; } public void setArea(String area) { this.area = area; } public String get_Class() { return this._class; } public void set_Class(String _class) { this._class = _class; } public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } public String getIdc() { return this.idc; } public void setIdc(String idc) { this.idc = idc; } } @Override public QuerySupplyAreaResponse getInstance(UnmarshallerContext context) { return QuerySupplyAreaResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryTemplateRequest extends RpcAcsRequest<QueryTemplateResponse> { private String osName; private String modelName; private Boolean isFactoryInstall; public QueryTemplateRequest() { super("brinekingdom", "2019-06-27", "QueryTemplate"); setMethod(MethodType.POST); } public String getOsName() { return this.osName; } public void setOsName(String osName) { this.osName = osName; if(osName != null){ putQueryParameter("OsName", osName); } } public String getModelName() { return this.modelName; } public void setModelName(String modelName) { this.modelName = modelName; if(modelName != null){ putQueryParameter("ModelName", modelName); } } public Boolean getIsFactoryInstall() { return this.isFactoryInstall; } public void setIsFactoryInstall(Boolean isFactoryInstall) { this.isFactoryInstall = isFactoryInstall; if(isFactoryInstall != null){ putQueryParameter("IsFactoryInstall", isFactoryInstall.toString()); } } @Override public Class<QueryTemplateResponse> getResponseClass() { return QueryTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/QueryTemplateResponse.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.brinekingdom.model.v20190627; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.QueryTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryTemplateResponse extends AcsResponse { private String _class; private String errorMessage; private Boolean success; private String resultCode; private String requestId; private List<ResultItem> result; public String get_Class() { return this._class; } public void set_Class(String _class) { this._class = _class; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Long id; private String name; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } @Override public QueryTemplateResponse getInstance(UnmarshallerContext context) { return QueryTemplateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/ReceiveRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import java.util.List; import java.util.Map; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ReceiveRequest extends RpcAcsRequest<ReceiveResponse> { @SerializedName("demandRequestList") private List<DemandRequestList> demandRequestList; public ReceiveRequest() { super("brinekingdom", "2019-06-27", "Receive"); setMethod(MethodType.POST); } public List<DemandRequestList> getDemandRequestList() { return this.demandRequestList; } public void setDemandRequestList(List<DemandRequestList> demandRequestList) { this.demandRequestList = demandRequestList; if (demandRequestList != null) { putQueryParameter("DemandRequestList" , new Gson().toJson(demandRequestList)); } } public static class DemandRequestList { @SerializedName("Cluster") private String cluster; @SerializedName("RackInfo") private List<String> rackInfo; @SerializedName("SafeZone") private String safeZone; @SerializedName("ChangeCnt") private Integer changeCnt; @SerializedName("ExpectTurnOverDateStr") private String expectTurnOverDateStr; @SerializedName("ProjectCode") private String projectCode; @SerializedName("Source") private String source; @SerializedName("SupplyLevel") private String supplyLevel; @SerializedName("Operator") private String operator; @SerializedName("BusinessType") private String businessType; @SerializedName("ProductType") private String productType; @SerializedName("Product3") private String product3; @SerializedName("Features") private Map<String,String> features; @SerializedName("FactoryInstall") private Boolean factoryInstall; @SerializedName("ShiftMethod") private String shiftMethod; @SerializedName("DemandDeploy") private DemandDeploy demandDeploy; @SerializedName("AssetReceiverNick") private String assetReceiverNick; @SerializedName("Azone") private String azone; @SerializedName("OsName") private String osName; @SerializedName("ProjectTypeName") private String projectTypeName; @SerializedName("Item") private String item; @SerializedName("ProjectName") private String projectName; @SerializedName("Idc") private String idc; @SerializedName("AssetReceiver") private String assetReceiver; @SerializedName("Priority") private String priority; @SerializedName("SupplyCnt") private Integer supplyCnt; @SerializedName("RequireType") private String requireType; @SerializedName("RackPlanStrategyDTO") private RackPlanStrategyDTO rackPlanStrategyDTO; @SerializedName("Install") private Boolean install; @SerializedName("ModelLoad") private Integer modelLoad; @SerializedName("Region") private String region; @SerializedName("CloudIsolationUnit") private String cloudIsolationUnit; @SerializedName("AscriptionClassName") private String ascriptionClassName; @SerializedName("OsId") private Long osId; @SerializedName("InstallId") private Long installId; @SerializedName("FcstId") private String fcstId; @SerializedName("Uid") private String uid; @SerializedName("Scenario") private String scenario; @SerializedName("DemandQty") private Integer demandQty; @SerializedName("TenantId") private String tenantId; @SerializedName("ClassZone") private String classZone; @SerializedName("AscriptionClass") private String ascriptionClass; @SerializedName("ProjectType") private String projectType; @SerializedName("NetworkArch") private String networkArch; @SerializedName("SourceId") private String sourceId; @SerializedName("Comments") private String comments; @SerializedName("Org") private String org; @SerializedName("MoveCnt") private Integer moveCnt; @SerializedName("InstallName") private String installName; @SerializedName("DemandItem") private DemandItem demandItem; @SerializedName("DeployProduct3") private String deployProduct3; @SerializedName("BenefitOld") private Integer benefitOld; @SerializedName("DemandClass") private String demandClass; @SerializedName("ItemType") private String itemType; @SerializedName("AppGroup") private String appGroup; @SerializedName("LogicZone") private String logicZone; @SerializedName("ConsistentDemandId") private Long consistentDemandId; @SerializedName("ReplenishUnit") private String replenishUnit; public String getCluster() { return this.cluster; } public void setCluster(String cluster) { this.cluster = cluster; } public List<String> getRackInfo() { return this.rackInfo; } public void setRackInfo(List<String> rackInfo) { this.rackInfo = rackInfo; } public String getSafeZone() { return this.safeZone; } public void setSafeZone(String safeZone) { this.safeZone = safeZone; } public Integer getChangeCnt() { return this.changeCnt; } public void setChangeCnt(Integer changeCnt) { this.changeCnt = changeCnt; } public String getExpectTurnOverDateStr() { return this.expectTurnOverDateStr; } public void setExpectTurnOverDateStr(String expectTurnOverDateStr) { this.expectTurnOverDateStr = expectTurnOverDateStr; } public String getProjectCode() { return this.projectCode; } public void setProjectCode(String projectCode) { this.projectCode = projectCode; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public String getSupplyLevel() { return this.supplyLevel; } public void setSupplyLevel(String supplyLevel) { this.supplyLevel = supplyLevel; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getBusinessType() { return this.businessType; } public void setBusinessType(String businessType) { this.businessType = businessType; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getProduct3() { return this.product3; } public void setProduct3(String product3) { this.product3 = product3; } public Map<String,String> getFeatures() { return this.features; } public void setFeatures(Map<String,String> features) { this.features = features; } public Boolean getFactoryInstall() { return this.factoryInstall; } public void setFactoryInstall(Boolean factoryInstall) { this.factoryInstall = factoryInstall; } public String getShiftMethod() { return this.shiftMethod; } public void setShiftMethod(String shiftMethod) { this.shiftMethod = shiftMethod; } public DemandDeploy getDemandDeploy() { return this.demandDeploy; } public void setDemandDeploy(DemandDeploy demandDeploy) { this.demandDeploy = demandDeploy; } public String getAssetReceiverNick() { return this.assetReceiverNick; } public void setAssetReceiverNick(String assetReceiverNick) { this.assetReceiverNick = assetReceiverNick; } public String getAzone() { return this.azone; } public void setAzone(String azone) { this.azone = azone; } public String getOsName() { return this.osName; } public void setOsName(String osName) { this.osName = osName; } public String getProjectTypeName() { return this.projectTypeName; } public void setProjectTypeName(String projectTypeName) { this.projectTypeName = projectTypeName; } public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getIdc() { return this.idc; } public void setIdc(String idc) { this.idc = idc; } public String getAssetReceiver() { return this.assetReceiver; } public void setAssetReceiver(String assetReceiver) { this.assetReceiver = assetReceiver; } public String getPriority() { return this.priority; } public void setPriority(String priority) { this.priority = priority; } public Integer getSupplyCnt() { return this.supplyCnt; } public void setSupplyCnt(Integer supplyCnt) { this.supplyCnt = supplyCnt; } public String getRequireType() { return this.requireType; } public void setRequireType(String requireType) { this.requireType = requireType; } public RackPlanStrategyDTO getRackPlanStrategyDTO() { return this.rackPlanStrategyDTO; } public void setRackPlanStrategyDTO(RackPlanStrategyDTO rackPlanStrategyDTO) { this.rackPlanStrategyDTO = rackPlanStrategyDTO; } public Boolean getInstall() { return this.install; } public void setInstall(Boolean install) { this.install = install; } public Integer getModelLoad() { return this.modelLoad; } public void setModelLoad(Integer modelLoad) { this.modelLoad = modelLoad; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getCloudIsolationUnit() { return this.cloudIsolationUnit; } public void setCloudIsolationUnit(String cloudIsolationUnit) { this.cloudIsolationUnit = cloudIsolationUnit; } public String getAscriptionClassName() { return this.ascriptionClassName; } public void setAscriptionClassName(String ascriptionClassName) { this.ascriptionClassName = ascriptionClassName; } public Long getOsId() { return this.osId; } public void setOsId(Long osId) { this.osId = osId; } public Long getInstallId() { return this.installId; } public void setInstallId(Long installId) { this.installId = installId; } public String getFcstId() { return this.fcstId; } public void setFcstId(String fcstId) { this.fcstId = fcstId; } public String getUid() { return this.uid; } public void setUid(String uid) { this.uid = uid; } public String getScenario() { return this.scenario; } public void setScenario(String scenario) { this.scenario = scenario; } public Integer getDemandQty() { return this.demandQty; } public void setDemandQty(Integer demandQty) { this.demandQty = demandQty; } public String getTenantId() { return this.tenantId; } public void setTenantId(String tenantId) { this.tenantId = tenantId; } public String getClassZone() { return this.classZone; } public void setClassZone(String classZone) { this.classZone = classZone; } public String getAscriptionClass() { return this.ascriptionClass; } public void setAscriptionClass(String ascriptionClass) { this.ascriptionClass = ascriptionClass; } public String getProjectType() { return this.projectType; } public void setProjectType(String projectType) { this.projectType = projectType; } public String getNetworkArch() { return this.networkArch; } public void setNetworkArch(String networkArch) { this.networkArch = networkArch; } public String getSourceId() { return this.sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public String getComments() { return this.comments; } public void setComments(String comments) { this.comments = comments; } public String getOrg() { return this.org; } public void setOrg(String org) { this.org = org; } public Integer getMoveCnt() { return this.moveCnt; } public void setMoveCnt(Integer moveCnt) { this.moveCnt = moveCnt; } public String getInstallName() { return this.installName; } public void setInstallName(String installName) { this.installName = installName; } public DemandItem getDemandItem() { return this.demandItem; } public void setDemandItem(DemandItem demandItem) { this.demandItem = demandItem; } public String getDeployProduct3() { return this.deployProduct3; } public void setDeployProduct3(String deployProduct3) { this.deployProduct3 = deployProduct3; } public Integer getBenefitOld() { return this.benefitOld; } public void setBenefitOld(Integer benefitOld) { this.benefitOld = benefitOld; } public String getDemandClass() { return this.demandClass; } public void setDemandClass(String demandClass) { this.demandClass = demandClass; } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; } public String getAppGroup() { return this.appGroup; } public void setAppGroup(String appGroup) { this.appGroup = appGroup; } public String getLogicZone() { return this.logicZone; } public void setLogicZone(String logicZone) { this.logicZone = logicZone; } public Long getConsistentDemandId() { return this.consistentDemandId; } public void setConsistentDemandId(Long consistentDemandId) { this.consistentDemandId = consistentDemandId; } public String getReplenishUnit() { return this.replenishUnit; } public void setReplenishUnit(String replenishUnit) { this.replenishUnit = replenishUnit; } public static class DemandDeploy { @SerializedName("DeployRole") private String deployRole; @SerializedName("NodeType") private String nodeType; @SerializedName("DeployLevel") private String deployLevel; @SerializedName("DeployLocation") private String deployLocation; @SerializedName("FrameworkClass") private String frameworkClass; public String getDeployRole() { return this.deployRole; } public void setDeployRole(String deployRole) { this.deployRole = deployRole; } public String getNodeType() { return this.nodeType; } public void setNodeType(String nodeType) { this.nodeType = nodeType; } public String getDeployLevel() { return this.deployLevel; } public void setDeployLevel(String deployLevel) { this.deployLevel = deployLevel; } public String getDeployLocation() { return this.deployLocation; } public void setDeployLocation(String deployLocation) { this.deployLocation = deployLocation; } public String getFrameworkClass() { return this.frameworkClass; } public void setFrameworkClass(String frameworkClass) { this.frameworkClass = frameworkClass; } } public static class RackPlanStrategyDTO { @SerializedName("cluster") private String cluster; @SerializedName("NetworkLocationDTO") private NetworkLocationDTO networkLocationDTO; @SerializedName("mixLogicZone") private String mixLogicZone; @SerializedName("PhysicsLocationDTO") private PhysicsLocationDTO physicsLocationDTO; @SerializedName("scatterNo") private Integer scatterNo; public String getCluster() { return this.cluster; } public void setCluster(String cluster) { this.cluster = cluster; } public NetworkLocationDTO getNetworkLocationDTO() { return this.networkLocationDTO; } public void setNetworkLocationDTO(NetworkLocationDTO networkLocationDTO) { this.networkLocationDTO = networkLocationDTO; } public String getMixLogicZone() { return this.mixLogicZone; } public void setMixLogicZone(String mixLogicZone) { this.mixLogicZone = mixLogicZone; } public PhysicsLocationDTO getPhysicsLocationDTO() { return this.physicsLocationDTO; } public void setPhysicsLocationDTO(PhysicsLocationDTO physicsLocationDTO) { this.physicsLocationDTO = physicsLocationDTO; } public Integer getScatterNo() { return this.scatterNo; } public void setScatterNo(Integer scatterNo) { this.scatterNo = scatterNo; } public static class NetworkLocationDTO { @SerializedName("pod") private String pod; @SerializedName("aswList") private List<String> aswList; @SerializedName("netCluster") private String netCluster; public String getPod() { return this.pod; } public void setPod(String pod) { this.pod = pod; } public List<String> getAswList() { return this.aswList; } public void setAswList(List<String> aswList) { this.aswList = aswList; } public String getNetCluster() { return this.netCluster; } public void setNetCluster(String netCluster) { this.netCluster = netCluster; } } public static class PhysicsLocationDTO { @SerializedName("roomName") private String roomName; @SerializedName("rackNameList") private List<String> rackNameList; @SerializedName("tower") private String tower; public String getRoomName() { return this.roomName; } public void setRoomName(String roomName) { this.roomName = roomName; } public List<String> getRackNameList() { return this.rackNameList; } public void setRackNameList(List<String> rackNameList) { this.rackNameList = rackNameList; } public String getTower() { return this.tower; } public void setTower(String tower) { this.tower = tower; } } } public static class DemandItem { @SerializedName("ServerDTO") private ServerDTO serverDTO; @SerializedName("ExchangeValue") private ExchangeValue exchangeValue; @SerializedName("DemandItemType") private String demandItemType; @SerializedName("ComboValue") private ComboValue comboValue; public ServerDTO getServerDTO() { return this.serverDTO; } public void setServerDTO(ServerDTO serverDTO) { this.serverDTO = serverDTO; } public ExchangeValue getExchangeValue() { return this.exchangeValue; } public void setExchangeValue(ExchangeValue exchangeValue) { this.exchangeValue = exchangeValue; } public String getDemandItemType() { return this.demandItemType; } public void setDemandItemType(String demandItemType) { this.demandItemType = demandItemType; } public ComboValue getComboValue() { return this.comboValue; } public void setComboValue(ComboValue comboValue) { this.comboValue = comboValue; } public static class ServerDTO { @SerializedName("Nic") private String nic; @SerializedName("Model") private String model; @SerializedName("Config") private String config; public String getNic() { return this.nic; } public void setNic(String nic) { this.nic = nic; } public String getModel() { return this.model; } public void setModel(String model) { this.model = model; } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; } } public static class ExchangeValue { @SerializedName("ExchangeList") private List<String> exchangeList; @SerializedName("ServerDemandList") private List<ServerDemandListItem> serverDemandList; public List<String> getExchangeList() { return this.exchangeList; } public void setExchangeList(List<String> exchangeList) { this.exchangeList = exchangeList; } public List<ServerDemandListItem> getServerDemandList() { return this.serverDemandList; } public void setServerDemandList(List<ServerDemandListItem> serverDemandList) { this.serverDemandList = serverDemandList; } public static class ServerDemandListItem { @SerializedName("Item") private String item; @SerializedName("Quantity") private Integer quantity; @SerializedName("AppGroup") private String appGroup; @SerializedName("AgreedQuantity") private Integer agreedQuantity; @SerializedName("SnList") private List<String> snList; @SerializedName("Product3") private String product3; public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } public String getAppGroup() { return this.appGroup; } public void setAppGroup(String appGroup) { this.appGroup = appGroup; } public Integer getAgreedQuantity() { return this.agreedQuantity; } public void setAgreedQuantity(Integer agreedQuantity) { this.agreedQuantity = agreedQuantity; } public List<String> getSnList() { return this.snList; } public void setSnList(List<String> snList) { this.snList = snList; } public String getProduct3() { return this.product3; } public void setProduct3(String product3) { this.product3 = product3; } } } public static class ComboValue { @SerializedName("SkuId") private String skuId; @SerializedName("ServerDemandList") private List<ServerDemandListItem> serverDemandList; public String getSkuId() { return this.skuId; } public void setSkuId(String skuId) { this.skuId = skuId; } public List<ServerDemandListItem> getServerDemandList() { return this.serverDemandList; } public void setServerDemandList(List<ServerDemandListItem> serverDemandList) { this.serverDemandList = serverDemandList; } public static class ServerDemandListItem { @SerializedName("Item") private String item; @SerializedName("Quantity") private Integer quantity; @SerializedName("AppGroup") private String appGroup; @SerializedName("AgreedQuantity") private Integer agreedQuantity; @SerializedName("SnList") private List<String> snList; @SerializedName("Product3") private String product3; public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } public String getAppGroup() { return this.appGroup; } public void setAppGroup(String appGroup) { this.appGroup = appGroup; } public Integer getAgreedQuantity() { return this.agreedQuantity; } public void setAgreedQuantity(Integer agreedQuantity) { this.agreedQuantity = agreedQuantity; } public List<String> getSnList() { return this.snList; } public void setSnList(List<String> snList) { this.snList = snList; } public String getProduct3() { return this.product3; } public void setProduct3(String product3) { this.product3 = product3; } } } } } @Override public Class<ReceiveResponse> getResponseClass() { return ReceiveResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/ReceiveResponse.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.brinekingdom.model.v20190627; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.ReceiveResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ReceiveResponse extends AcsResponse { private String message; private Boolean success; private String requestId; private List<ConsistentDemandResponseList> result; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ConsistentDemandResponseList> getResult() { return this.result; } public void setResult(List<ConsistentDemandResponseList> result) { this.result = result; } public static class ConsistentDemandResponseList { private Long consistentDemandId; private String errorMsg; private String source; private String sourceId; private Boolean success; public Long getConsistentDemandId() { return this.consistentDemandId; } public void setConsistentDemandId(Long consistentDemandId) { this.consistentDemandId = consistentDemandId; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public String getSourceId() { return this.sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } } @Override public ReceiveResponse getInstance(UnmarshallerContext context) { return ReceiveResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class RequestDemandReverseRequest extends RpcAcsRequest<RequestDemandReverseResponse> { private Long demandId; @SerializedName("dataList") private List<DataList> dataList; public RequestDemandReverseRequest() { super("brinekingdom", "2019-06-27", "RequestDemandReverse"); setMethod(MethodType.POST); } public Long getDemandId() { return this.demandId; } public void setDemandId(Long demandId) { this.demandId = demandId; if(demandId != null){ putQueryParameter("DemandId", demandId.toString()); } } public List<DataList> getDataList() { return this.dataList; } public void setDataList(List<DataList> dataList) { this.dataList = dataList; if (dataList != null) { putQueryParameter("DataList" , new Gson().toJson(dataList)); } } public static class DataList { @SerializedName("Country") private String country; @SerializedName("ClassZoneCode") private String classZoneCode; @SerializedName("ProjectCode") private String projectCode; @SerializedName("Product2") private String product2; @SerializedName("Product1") private String product1; @SerializedName("Nic") private String nic; @SerializedName("BusinessModeName") private String businessModeName; @SerializedName("LogicZoneCode") private String logicZoneCode; @SerializedName("PlanType") private Integer planType; @SerializedName("Product3") private String product3; @SerializedName("MachineType") private String machineType; @SerializedName("BusinessMode") private String businessMode; @SerializedName("HighCnt") private Integer highCnt; @SerializedName("SafeZoneName") private String safeZoneName; @SerializedName("LogicZoneName") private String logicZoneName; @SerializedName("Id") private Long id; @SerializedName("AssetReceiverNick") private String assetReceiverNick; @SerializedName("Azone") private String azone; @SerializedName("OsName") private String osName; @SerializedName("SubLine") private String subLine; @SerializedName("ReverseType") private String reverseType; @SerializedName("ProjectTypeName") private String projectTypeName; @SerializedName("CbmDemander") private String cbmDemander; @SerializedName("ProjectName") private String projectName; @SerializedName("NetArch") private String netArch; @SerializedName("Product3Name") private String product3Name; @SerializedName("NewPlanId") private Long newPlanId; @SerializedName("ManufacturerBrand") private Long manufacturerBrand; @SerializedName("AssetReceiver") private String assetReceiver; @SerializedName("LadingStatus") private Integer ladingStatus; @SerializedName("Priority") private String priority; @SerializedName("DemandStatus") private Integer demandStatus; @SerializedName("AppGroupName") private String appGroupName; @SerializedName("RequireType") private String requireType; @SerializedName("ClassZoneName") private String classZoneName; @SerializedName("Install") private Integer install; @SerializedName("CmC") private String cmC; @SerializedName("BusinessName") private String businessName; @SerializedName("OutId") private String outId; @SerializedName("ModelLoad") private Integer modelLoad; @SerializedName("Region") private String region; @SerializedName("ScStatus") private String scStatus; @SerializedName("Product1Name") private String product1Name; @SerializedName("ReverseStatus") private String reverseStatus; @SerializedName("StockStatus") private String stockStatus; @SerializedName("CmP") private String cmP; @SerializedName("CmU") private String cmU; @SerializedName("OsId") private Long osId; @SerializedName("ManufacturerBrandName") private String manufacturerBrandName; @SerializedName("Error") private String error; @SerializedName("CmV") private String cmV; @SerializedName("InstallId") private Long installId; @SerializedName("QuotaPlanId") private Long quotaPlanId; @SerializedName("CloudDeployProduct1Name") private String cloudDeployProduct1Name; @SerializedName("DcosStatus") private String dcosStatus; @SerializedName("Product2Name") private String product2Name; @SerializedName("RequireTypeName") private String requireTypeName; @SerializedName("Scenario") private String scenario; @SerializedName("NakedDelivery") private Integer nakedDelivery; @SerializedName("CloudDeployProduct3") private String cloudDeployProduct3; @SerializedName("ProjectType") private String projectType; @SerializedName("SubLineName") private String subLineName; @SerializedName("AppGroupId") private Long appGroupId; @SerializedName("PlanChangeReason") private String planChangeReason; @SerializedName("Creator") private String creator; @SerializedName("Business") private String business; @SerializedName("Org") private String org; @SerializedName("Cnt") private Integer cnt; @SerializedName("InstallName") private String installName; @SerializedName("CreatorNic") private String creatorNic; @SerializedName("SafeZoneCode") private String safeZoneCode; @SerializedName("TimeStr") private String timeStr; @SerializedName("CloudDeployProduct2Name") private String cloudDeployProduct2Name; @SerializedName("BenefitOld") private Integer benefitOld; @SerializedName("OriginId") private Long originId; @SerializedName("SafeYear") private String safeYear; @SerializedName("AddStatus") private String addStatus; @SerializedName("ProcessId") private String processId; @SerializedName("Comment") private String comment; @SerializedName("RoomCode") private String roomCode; @SerializedName("CloudDeployProduct3Name") private String cloudDeployProduct3Name; public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } public String getClassZoneCode() { return this.classZoneCode; } public void setClassZoneCode(String classZoneCode) { this.classZoneCode = classZoneCode; } public String getProjectCode() { return this.projectCode; } public void setProjectCode(String projectCode) { this.projectCode = projectCode; } public String getProduct2() { return this.product2; } public void setProduct2(String product2) { this.product2 = product2; } public String getProduct1() { return this.product1; } public void setProduct1(String product1) { this.product1 = product1; } public String getNic() { return this.nic; } public void setNic(String nic) { this.nic = nic; } public String getBusinessModeName() { return this.businessModeName; } public void setBusinessModeName(String businessModeName) { this.businessModeName = businessModeName; } public String getLogicZoneCode() { return this.logicZoneCode; } public void setLogicZoneCode(String logicZoneCode) { this.logicZoneCode = logicZoneCode; } public Integer getPlanType() { return this.planType; } public void setPlanType(Integer planType) { this.planType = planType; } public String getProduct3() { return this.product3; } public void setProduct3(String product3) { this.product3 = product3; } public String getMachineType() { return this.machineType; } public void setMachineType(String machineType) { this.machineType = machineType; } public String getBusinessMode() { return this.businessMode; } public void setBusinessMode(String businessMode) { this.businessMode = businessMode; } public Integer getHighCnt() { return this.highCnt; } public void setHighCnt(Integer highCnt) { this.highCnt = highCnt; } public String getSafeZoneName() { return this.safeZoneName; } public void setSafeZoneName(String safeZoneName) { this.safeZoneName = safeZoneName; } public String getLogicZoneName() { return this.logicZoneName; } public void setLogicZoneName(String logicZoneName) { this.logicZoneName = logicZoneName; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getAssetReceiverNick() { return this.assetReceiverNick; } public void setAssetReceiverNick(String assetReceiverNick) { this.assetReceiverNick = assetReceiverNick; } public String getAzone() { return this.azone; } public void setAzone(String azone) { this.azone = azone; } public String getOsName() { return this.osName; } public void setOsName(String osName) { this.osName = osName; } public String getSubLine() { return this.subLine; } public void setSubLine(String subLine) { this.subLine = subLine; } public String getReverseType() { return this.reverseType; } public void setReverseType(String reverseType) { this.reverseType = reverseType; } public String getProjectTypeName() { return this.projectTypeName; } public void setProjectTypeName(String projectTypeName) { this.projectTypeName = projectTypeName; } public String getCbmDemander() { return this.cbmDemander; } public void setCbmDemander(String cbmDemander) { this.cbmDemander = cbmDemander; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getNetArch() { return this.netArch; } public void setNetArch(String netArch) { this.netArch = netArch; } public String getProduct3Name() { return this.product3Name; } public void setProduct3Name(String product3Name) { this.product3Name = product3Name; } public Long getNewPlanId() { return this.newPlanId; } public void setNewPlanId(Long newPlanId) { this.newPlanId = newPlanId; } public Long getManufacturerBrand() { return this.manufacturerBrand; } public void setManufacturerBrand(Long manufacturerBrand) { this.manufacturerBrand = manufacturerBrand; } public String getAssetReceiver() { return this.assetReceiver; } public void setAssetReceiver(String assetReceiver) { this.assetReceiver = assetReceiver; } public Integer getLadingStatus() { return this.ladingStatus; } public void setLadingStatus(Integer ladingStatus) { this.ladingStatus = ladingStatus; } public String getPriority() { return this.priority; } public void setPriority(String priority) { this.priority = priority; } public Integer getDemandStatus() { return this.demandStatus; } public void setDemandStatus(Integer demandStatus) { this.demandStatus = demandStatus; } public String getAppGroupName() { return this.appGroupName; } public void setAppGroupName(String appGroupName) { this.appGroupName = appGroupName; } public String getRequireType() { return this.requireType; } public void setRequireType(String requireType) { this.requireType = requireType; } public String getClassZoneName() { return this.classZoneName; } public void setClassZoneName(String classZoneName) { this.classZoneName = classZoneName; } public Integer getInstall() { return this.install; } public void setInstall(Integer install) { this.install = install; } public String getCmC() { return this.cmC; } public void setCmC(String cmC) { this.cmC = cmC; } public String getBusinessName() { return this.businessName; } public void setBusinessName(String businessName) { this.businessName = businessName; } public String getOutId() { return this.outId; } public void setOutId(String outId) { this.outId = outId; } public Integer getModelLoad() { return this.modelLoad; } public void setModelLoad(Integer modelLoad) { this.modelLoad = modelLoad; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getScStatus() { return this.scStatus; } public void setScStatus(String scStatus) { this.scStatus = scStatus; } public String getProduct1Name() { return this.product1Name; } public void setProduct1Name(String product1Name) { this.product1Name = product1Name; } public String getReverseStatus() { return this.reverseStatus; } public void setReverseStatus(String reverseStatus) { this.reverseStatus = reverseStatus; } public String getStockStatus() { return this.stockStatus; } public void setStockStatus(String stockStatus) { this.stockStatus = stockStatus; } public String getCmP() { return this.cmP; } public void setCmP(String cmP) { this.cmP = cmP; } public String getCmU() { return this.cmU; } public void setCmU(String cmU) { this.cmU = cmU; } public Long getOsId() { return this.osId; } public void setOsId(Long osId) { this.osId = osId; } public String getManufacturerBrandName() { return this.manufacturerBrandName; } public void setManufacturerBrandName(String manufacturerBrandName) { this.manufacturerBrandName = manufacturerBrandName; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public String getCmV() { return this.cmV; } public void setCmV(String cmV) { this.cmV = cmV; } public Long getInstallId() { return this.installId; } public void setInstallId(Long installId) { this.installId = installId; } public Long getQuotaPlanId() { return this.quotaPlanId; } public void setQuotaPlanId(Long quotaPlanId) { this.quotaPlanId = quotaPlanId; } public String getCloudDeployProduct1Name() { return this.cloudDeployProduct1Name; } public void setCloudDeployProduct1Name(String cloudDeployProduct1Name) { this.cloudDeployProduct1Name = cloudDeployProduct1Name; } public String getDcosStatus() { return this.dcosStatus; } public void setDcosStatus(String dcosStatus) { this.dcosStatus = dcosStatus; } public String getProduct2Name() { return this.product2Name; } public void setProduct2Name(String product2Name) { this.product2Name = product2Name; } public String getRequireTypeName() { return this.requireTypeName; } public void setRequireTypeName(String requireTypeName) { this.requireTypeName = requireTypeName; } public String getScenario() { return this.scenario; } public void setScenario(String scenario) { this.scenario = scenario; } public Integer getNakedDelivery() { return this.nakedDelivery; } public void setNakedDelivery(Integer nakedDelivery) { this.nakedDelivery = nakedDelivery; } public String getCloudDeployProduct3() { return this.cloudDeployProduct3; } public void setCloudDeployProduct3(String cloudDeployProduct3) { this.cloudDeployProduct3 = cloudDeployProduct3; } public String getProjectType() { return this.projectType; } public void setProjectType(String projectType) { this.projectType = projectType; } public String getSubLineName() { return this.subLineName; } public void setSubLineName(String subLineName) { this.subLineName = subLineName; } public Long getAppGroupId() { return this.appGroupId; } public void setAppGroupId(Long appGroupId) { this.appGroupId = appGroupId; } public String getPlanChangeReason() { return this.planChangeReason; } public void setPlanChangeReason(String planChangeReason) { this.planChangeReason = planChangeReason; } public String getCreator() { return this.creator; } public void setCreator(String creator) { this.creator = creator; } public String getBusiness() { return this.business; } public void setBusiness(String business) { this.business = business; } public String getOrg() { return this.org; } public void setOrg(String org) { this.org = org; } public Integer getCnt() { return this.cnt; } public void setCnt(Integer cnt) { this.cnt = cnt; } public String getInstallName() { return this.installName; } public void setInstallName(String installName) { this.installName = installName; } public String getCreatorNic() { return this.creatorNic; } public void setCreatorNic(String creatorNic) { this.creatorNic = creatorNic; } public String getSafeZoneCode() { return this.safeZoneCode; } public void setSafeZoneCode(String safeZoneCode) { this.safeZoneCode = safeZoneCode; } public String getTimeStr() { return this.timeStr; } public void setTimeStr(String timeStr) { this.timeStr = timeStr; } public String getCloudDeployProduct2Name() { return this.cloudDeployProduct2Name; } public void setCloudDeployProduct2Name(String cloudDeployProduct2Name) { this.cloudDeployProduct2Name = cloudDeployProduct2Name; } public Integer getBenefitOld() { return this.benefitOld; } public void setBenefitOld(Integer benefitOld) { this.benefitOld = benefitOld; } public Long getOriginId() { return this.originId; } public void setOriginId(Long originId) { this.originId = originId; } public String getSafeYear() { return this.safeYear; } public void setSafeYear(String safeYear) { this.safeYear = safeYear; } public String getAddStatus() { return this.addStatus; } public void setAddStatus(String addStatus) { this.addStatus = addStatus; } public String getProcessId() { return this.processId; } public void setProcessId(String processId) { this.processId = processId; } public String getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; } public String getRoomCode() { return this.roomCode; } public void setRoomCode(String roomCode) { this.roomCode = roomCode; } public String getCloudDeployProduct3Name() { return this.cloudDeployProduct3Name; } public void setCloudDeployProduct3Name(String cloudDeployProduct3Name) { this.cloudDeployProduct3Name = cloudDeployProduct3Name; } } @Override public Class<RequestDemandReverseResponse> getResponseClass() { return RequestDemandReverseResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/RequestDemandReverseResponse.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.brinekingdom.model.v20190627; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.RequestDemandReverseResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RequestDemandReverseResponse extends AcsResponse { private String traceId; private String errorMessage; private String resultCode; private Boolean success; private Boolean result; private String requestId; public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RequestDemandReverseResponse getInstance(UnmarshallerContext context) { return RequestDemandReverseResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class SubmitPlanningResultRequest extends RpcAcsRequest<SubmitPlanningResultResponse> { private Integer requireCnt; private Long demandId; private Long subDemandId; private Integer bufferCnt; private Integer demandCount; private List<ResourceMethod> resourceMethods; public SubmitPlanningResultRequest() { super("brinekingdom", "2019-06-27", "SubmitPlanningResult"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); } public Integer getRequireCnt() { return this.requireCnt; } public void setRequireCnt(Integer requireCnt) { this.requireCnt = requireCnt; if(requireCnt != null){ putQueryParameter("RequireCnt", requireCnt.toString()); } } public Long getDemandId() { return this.demandId; } public void setDemandId(Long demandId) { this.demandId = demandId; if(demandId != null){ putQueryParameter("DemandId", demandId.toString()); } } public Long getSubDemandId() { return this.subDemandId; } public void setSubDemandId(Long subDemandId) { this.subDemandId = subDemandId; if(subDemandId != null){ putQueryParameter("SubDemandId", subDemandId.toString()); } } public Integer getBufferCnt() { return this.bufferCnt; } public void setBufferCnt(Integer bufferCnt) { this.bufferCnt = bufferCnt; if(bufferCnt != null){ putQueryParameter("BufferCnt", bufferCnt.toString()); } } public Integer getDemandCount() { return this.demandCount; } public void setDemandCount(Integer demandCount) { this.demandCount = demandCount; if(demandCount != null){ putQueryParameter("DemandCount", demandCount.toString()); } } public List<ResourceMethod> getResourceMethods() { return this.resourceMethods; } public void setResourceMethods(List<ResourceMethod> resourceMethods) { this.resourceMethods = resourceMethods; if (resourceMethods != null) { for (int depth1 = 0; depth1 < resourceMethods.size(); depth1++) { putQueryParameter("ResourceMethod." + (depth1 + 1) + ".FinalAvzone" , resourceMethods.get(depth1).getFinalAvzone()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Cluster" , resourceMethods.get(depth1).getCluster()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".ConvertHostCnt" , resourceMethods.get(depth1).getConvertHostCnt()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".BufferCnt" , resourceMethods.get(depth1).getBufferCnt()); if (resourceMethods.get(depth1).getSupplyPlans() != null) { for (int depth2 = 0; depth2 < resourceMethods.get(depth1).getSupplyPlans().size(); depth2++) { putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".SafeZone" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getSafeZone()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".NetArch" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getNetArch()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".SupplyType" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getSupplyType()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".LogicZone" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getLogicZone()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".SupplyAmount" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getSupplyAmount()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".SupplyDate" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getSupplyDate()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".Nic" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getNic()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".ClassZone" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getClassZone()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".ConvertHostType" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getConvertHostType()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".SupplyPlan." + (depth2 + 1) + ".Product3" , resourceMethods.get(depth1).getSupplyPlans().get(depth2).getProduct3()); } } putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Comment" , resourceMethods.get(depth1).getComment()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".RoomCode" , resourceMethods.get(depth1).getRoomCode()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Region" , resourceMethods.get(depth1).getRegion()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".ConvertHostType" , resourceMethods.get(depth1).getConvertHostType()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".GapCnt" , resourceMethods.get(depth1).getGapCnt()); putQueryParameter("ResourceMethod." + (depth1 + 1) + ".Azone" , resourceMethods.get(depth1).getAzone()); } } } public static class ResourceMethod { private String finalAvzone; private String cluster; private Integer convertHostCnt; private Integer bufferCnt; private List<SupplyPlan> supplyPlans; private String comment; private String roomCode; private String region; private String convertHostType; private Integer gapCnt; private String azone; public String getFinalAvzone() { return this.finalAvzone; } public void setFinalAvzone(String finalAvzone) { this.finalAvzone = finalAvzone; } public String getCluster() { return this.cluster; } public void setCluster(String cluster) { this.cluster = cluster; } public Integer getConvertHostCnt() { return this.convertHostCnt; } public void setConvertHostCnt(Integer convertHostCnt) { this.convertHostCnt = convertHostCnt; } public Integer getBufferCnt() { return this.bufferCnt; } public void setBufferCnt(Integer bufferCnt) { this.bufferCnt = bufferCnt; } public List<SupplyPlan> getSupplyPlans() { return this.supplyPlans; } public void setSupplyPlans(List<SupplyPlan> supplyPlans) { this.supplyPlans = supplyPlans; } public String getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; } public String getRoomCode() { return this.roomCode; } public void setRoomCode(String roomCode) { this.roomCode = roomCode; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getConvertHostType() { return this.convertHostType; } public void setConvertHostType(String convertHostType) { this.convertHostType = convertHostType; } public Integer getGapCnt() { return this.gapCnt; } public void setGapCnt(Integer gapCnt) { this.gapCnt = gapCnt; } public String getAzone() { return this.azone; } public void setAzone(String azone) { this.azone = azone; } public static class SupplyPlan { private String safeZone; private String netArch; private Integer supplyType; private String logicZone; private Integer supplyAmount; private String supplyDate; private String nic; private String classZone; private String convertHostType; private String product3; public String getSafeZone() { return this.safeZone; } public void setSafeZone(String safeZone) { this.safeZone = safeZone; } public String getNetArch() { return this.netArch; } public void setNetArch(String netArch) { this.netArch = netArch; } public Integer getSupplyType() { return this.supplyType; } public void setSupplyType(Integer supplyType) { this.supplyType = supplyType; } public String getLogicZone() { return this.logicZone; } public void setLogicZone(String logicZone) { this.logicZone = logicZone; } public Integer getSupplyAmount() { return this.supplyAmount; } public void setSupplyAmount(Integer supplyAmount) { this.supplyAmount = supplyAmount; } public String getSupplyDate() { return this.supplyDate; } public void setSupplyDate(String supplyDate) { this.supplyDate = supplyDate; } public String getNic() { return this.nic; } public void setNic(String nic) { this.nic = nic; } public String getClassZone() { return this.classZone; } public void setClassZone(String classZone) { this.classZone = classZone; } public String getConvertHostType() { return this.convertHostType; } public void setConvertHostType(String convertHostType) { this.convertHostType = convertHostType; } public String getProduct3() { return this.product3; } public void setProduct3(String product3) { this.product3 = product3; } } } @Override public Class<SubmitPlanningResultResponse> getResponseClass() { return SubmitPlanningResultResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/SubmitPlanningResultResponse.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.brinekingdom.model.v20190627; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.SubmitPlanningResultResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SubmitPlanningResultResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean 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 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; } @Override public SubmitPlanningResultResponse getInstance(UnmarshallerContext context) { return SubmitPlanningResultResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/TrackRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class TrackRequest extends RpcAcsRequest<TrackResponse> { private Long demandId; public TrackRequest() { super("brinekingdom", "2019-06-27", "Track"); setMethod(MethodType.POST); } public Long getDemandId() { return this.demandId; } public void setDemandId(Long demandId) { this.demandId = demandId; if(demandId != null){ putQueryParameter("DemandId", demandId.toString()); } } @Override public Class<TrackResponse> getResponseClass() { return TrackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/TrackResponse.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.brinekingdom.model.v20190627; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.TrackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TrackResponse extends AcsResponse { private String message; private Boolean success; private String requestId; private List<DataListItem> dataList; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataListItem> getDataList() { return this.dataList; } public void setDataList(List<DataListItem> dataList) { this.dataList = dataList; } public static class DataListItem { private Integer moveQty; private String sourceId; private Long demandId; private Integer supplyQty; private Long expectDate; private String demandStatus; private String source; private List<ProgressListItem> progressList; public Integer getMoveQty() { return this.moveQty; } public void setMoveQty(Integer moveQty) { this.moveQty = moveQty; } public String getSourceId() { return this.sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public Long getDemandId() { return this.demandId; } public void setDemandId(Long demandId) { this.demandId = demandId; } public Integer getSupplyQty() { return this.supplyQty; } public void setSupplyQty(Integer supplyQty) { this.supplyQty = supplyQty; } public Long getExpectDate() { return this.expectDate; } public void setExpectDate(Long expectDate) { this.expectDate = expectDate; } public String getDemandStatus() { return this.demandStatus; } public void setDemandStatus(String demandStatus) { this.demandStatus = demandStatus; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public List<ProgressListItem> getProgressList() { return this.progressList; } public void setProgressList(List<ProgressListItem> progressList) { this.progressList = progressList; } public static class ProgressListItem { private Long realDeliveryDate; private String orderErrorMsg; private Long slaDeliveryDate; private Long ladingCnt; private String orderNumber; private Long expectDate; private Long dealCnt; private String deliveryStatus; private Long deliveryCnt; private String rackStatus; private String deliveryType; private List<FcstDeliveryListItem> fcstDeliveryList; private List<DeliveryInfoListItem> deliveryInfoList; public Long getRealDeliveryDate() { return this.realDeliveryDate; } public void setRealDeliveryDate(Long realDeliveryDate) { this.realDeliveryDate = realDeliveryDate; } public String getOrderErrorMsg() { return this.orderErrorMsg; } public void setOrderErrorMsg(String orderErrorMsg) { this.orderErrorMsg = orderErrorMsg; } public Long getSlaDeliveryDate() { return this.slaDeliveryDate; } public void setSlaDeliveryDate(Long slaDeliveryDate) { this.slaDeliveryDate = slaDeliveryDate; } public Long getLadingCnt() { return this.ladingCnt; } public void setLadingCnt(Long ladingCnt) { this.ladingCnt = ladingCnt; } public String getOrderNumber() { return this.orderNumber; } public void setOrderNumber(String orderNumber) { this.orderNumber = orderNumber; } public Long getExpectDate() { return this.expectDate; } public void setExpectDate(Long expectDate) { this.expectDate = expectDate; } public Long getDealCnt() { return this.dealCnt; } public void setDealCnt(Long dealCnt) { this.dealCnt = dealCnt; } public String getDeliveryStatus() { return this.deliveryStatus; } public void setDeliveryStatus(String deliveryStatus) { this.deliveryStatus = deliveryStatus; } public Long getDeliveryCnt() { return this.deliveryCnt; } public void setDeliveryCnt(Long deliveryCnt) { this.deliveryCnt = deliveryCnt; } public String getRackStatus() { return this.rackStatus; } public void setRackStatus(String rackStatus) { this.rackStatus = rackStatus; } public String getDeliveryType() { return this.deliveryType; } public void setDeliveryType(String deliveryType) { this.deliveryType = deliveryType; } public List<FcstDeliveryListItem> getFcstDeliveryList() { return this.fcstDeliveryList; } public void setFcstDeliveryList(List<FcstDeliveryListItem> fcstDeliveryList) { this.fcstDeliveryList = fcstDeliveryList; } public List<DeliveryInfoListItem> getDeliveryInfoList() { return this.deliveryInfoList; } public void setDeliveryInfoList(List<DeliveryInfoListItem> deliveryInfoList) { this.deliveryInfoList = deliveryInfoList; } public static class FcstDeliveryListItem { private Long fcstDeliveryDate; private Integer fcstDeliveryCnt; public Long getFcstDeliveryDate() { return this.fcstDeliveryDate; } public void setFcstDeliveryDate(Long fcstDeliveryDate) { this.fcstDeliveryDate = fcstDeliveryDate; } public Integer getFcstDeliveryCnt() { return this.fcstDeliveryCnt; } public void setFcstDeliveryCnt(Integer fcstDeliveryCnt) { this.fcstDeliveryCnt = fcstDeliveryCnt; } } public static class DeliveryInfoListItem { private String deviceSource; private String brandCode; private String orderNumber; private String creator; private Long ladingOrderTime; private String transferTypeDES; private String securityDomain; private String idcName; private String parentFactoryModelName; private Long finishTime; private String receiveType; private Integer loading; private String logicZone; private String networkType; private String logicZoneName; private String templateName; private Boolean keepData; private String modelName; private String roomName; private String transferNumber; private String batchNumber; private String poNumber; private String osName; private String errorInfo; private String prNumber; private String shipNumber; private Boolean installSwitch; private String businessLabel; private Integer transferType; private String progressStepEnum; private Long preInputTime; private Long gmtCreate; private String transferName; private String sourceAppGroup; private String sourceIdcName; private String rackName; private String sn; private String appGroupName; public String getDeviceSource() { return this.deviceSource; } public void setDeviceSource(String deviceSource) { this.deviceSource = deviceSource; } public String getBrandCode() { return this.brandCode; } public void setBrandCode(String brandCode) { this.brandCode = brandCode; } public String getOrderNumber() { return this.orderNumber; } public void setOrderNumber(String orderNumber) { this.orderNumber = orderNumber; } public String getCreator() { return this.creator; } public void setCreator(String creator) { this.creator = creator; } public Long getLadingOrderTime() { return this.ladingOrderTime; } public void setLadingOrderTime(Long ladingOrderTime) { this.ladingOrderTime = ladingOrderTime; } public String getTransferTypeDES() { return this.transferTypeDES; } public void setTransferTypeDES(String transferTypeDES) { this.transferTypeDES = transferTypeDES; } public String getSecurityDomain() { return this.securityDomain; } public void setSecurityDomain(String securityDomain) { this.securityDomain = securityDomain; } public String getIdcName() { return this.idcName; } public void setIdcName(String idcName) { this.idcName = idcName; } public String getParentFactoryModelName() { return this.parentFactoryModelName; } public void setParentFactoryModelName(String parentFactoryModelName) { this.parentFactoryModelName = parentFactoryModelName; } public Long getFinishTime() { return this.finishTime; } public void setFinishTime(Long finishTime) { this.finishTime = finishTime; } public String getReceiveType() { return this.receiveType; } public void setReceiveType(String receiveType) { this.receiveType = receiveType; } public Integer getLoading() { return this.loading; } public void setLoading(Integer loading) { this.loading = loading; } public String getLogicZone() { return this.logicZone; } public void setLogicZone(String logicZone) { this.logicZone = logicZone; } public String getNetworkType() { return this.networkType; } public void setNetworkType(String networkType) { this.networkType = networkType; } public String getLogicZoneName() { return this.logicZoneName; } public void setLogicZoneName(String logicZoneName) { this.logicZoneName = logicZoneName; } public String getTemplateName() { return this.templateName; } public void setTemplateName(String templateName) { this.templateName = templateName; } public Boolean getKeepData() { return this.keepData; } public void setKeepData(Boolean keepData) { this.keepData = keepData; } public String getModelName() { return this.modelName; } public void setModelName(String modelName) { this.modelName = modelName; } public String getRoomName() { return this.roomName; } public void setRoomName(String roomName) { this.roomName = roomName; } public String getTransferNumber() { return this.transferNumber; } public void setTransferNumber(String transferNumber) { this.transferNumber = transferNumber; } public String getBatchNumber() { return this.batchNumber; } public void setBatchNumber(String batchNumber) { this.batchNumber = batchNumber; } public String getPoNumber() { return this.poNumber; } public void setPoNumber(String poNumber) { this.poNumber = poNumber; } public String getOsName() { return this.osName; } public void setOsName(String osName) { this.osName = osName; } public String getErrorInfo() { return this.errorInfo; } public void setErrorInfo(String errorInfo) { this.errorInfo = errorInfo; } public String getPrNumber() { return this.prNumber; } public void setPrNumber(String prNumber) { this.prNumber = prNumber; } public String getShipNumber() { return this.shipNumber; } public void setShipNumber(String shipNumber) { this.shipNumber = shipNumber; } public Boolean getInstallSwitch() { return this.installSwitch; } public void setInstallSwitch(Boolean installSwitch) { this.installSwitch = installSwitch; } public String getBusinessLabel() { return this.businessLabel; } public void setBusinessLabel(String businessLabel) { this.businessLabel = businessLabel; } public Integer getTransferType() { return this.transferType; } public void setTransferType(Integer transferType) { this.transferType = transferType; } public String getProgressStepEnum() { return this.progressStepEnum; } public void setProgressStepEnum(String progressStepEnum) { this.progressStepEnum = progressStepEnum; } public Long getPreInputTime() { return this.preInputTime; } public void setPreInputTime(Long preInputTime) { this.preInputTime = preInputTime; } public Long getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; } public String getTransferName() { return this.transferName; } public void setTransferName(String transferName) { this.transferName = transferName; } public String getSourceAppGroup() { return this.sourceAppGroup; } public void setSourceAppGroup(String sourceAppGroup) { this.sourceAppGroup = sourceAppGroup; } public String getSourceIdcName() { return this.sourceIdcName; } public void setSourceIdcName(String sourceIdcName) { this.sourceIdcName = sourceIdcName; } public String getRackName() { return this.rackName; } public void setRackName(String rackName) { this.rackName = rackName; } public String getSn() { return this.sn; } public void setSn(String sn) { this.sn = sn; } public String getAppGroupName() { return this.appGroupName; } public void setAppGroupName(String appGroupName) { this.appGroupName = appGroupName; } } } } @Override public TrackResponse getInstance(UnmarshallerContext context) { return TrackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaRequest.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.brinekingdom.model.v20190627; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class WeeksSummaryQuotaRequest extends RpcAcsRequest<WeeksSummaryQuotaResponse> { private String org; private String supplyArea; private String nic; private String model; private String expectDateStr; public WeeksSummaryQuotaRequest() { super("brinekingdom", "2019-06-27", "WeeksSummaryQuota"); setMethod(MethodType.POST); } public String getOrg() { return this.org; } public void setOrg(String org) { this.org = org; if(org != null){ putQueryParameter("Org", org); } } public String getSupplyArea() { return this.supplyArea; } public void setSupplyArea(String supplyArea) { this.supplyArea = supplyArea; if(supplyArea != null){ putQueryParameter("SupplyArea", supplyArea); } } public String getNic() { return this.nic; } public void setNic(String nic) { this.nic = nic; if(nic != null){ putQueryParameter("Nic", nic); } } public String getModel() { return this.model; } public void setModel(String model) { this.model = model; if(model != null){ putQueryParameter("Model", model); } } public String getExpectDateStr() { return this.expectDateStr; } public void setExpectDateStr(String expectDateStr) { this.expectDateStr = expectDateStr; if(expectDateStr != null){ putQueryParameter("ExpectDateStr", expectDateStr); } } @Override public Class<WeeksSummaryQuotaResponse> getResponseClass() { return WeeksSummaryQuotaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/model/v20190627/WeeksSummaryQuotaResponse.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.brinekingdom.model.v20190627; import com.aliyuncs.AcsResponse; import com.aliyuncs.brinekingdom.transform.v20190627.WeeksSummaryQuotaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class WeeksSummaryQuotaResponse extends AcsResponse { private String message; private Boolean success; private Result result; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long expectDate; private Long forecastTotal; private String model; private String nic; private String orgName; private Long plannedAvailable; private Long replenishable; private Long supplyCnt; public Long getExpectDate() { return this.expectDate; } public void setExpectDate(Long expectDate) { this.expectDate = expectDate; } public Long getForecastTotal() { return this.forecastTotal; } public void setForecastTotal(Long forecastTotal) { this.forecastTotal = forecastTotal; } public String getModel() { return this.model; } public void setModel(String model) { this.model = model; } public String getNic() { return this.nic; } public void setNic(String nic) { this.nic = nic; } public String getOrgName() { return this.orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } public Long getPlannedAvailable() { return this.plannedAvailable; } public void setPlannedAvailable(Long plannedAvailable) { this.plannedAvailable = plannedAvailable; } public Long getReplenishable() { return this.replenishable; } public void setReplenishable(Long replenishable) { this.replenishable = replenishable; } public Long getSupplyCnt() { return this.supplyCnt; } public void setSupplyCnt(Long supplyCnt) { this.supplyCnt = supplyCnt; } } @Override public WeeksSummaryQuotaResponse getInstance(UnmarshallerContext context) { return WeeksSummaryQuotaResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/CheckReceiveResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.CheckReceiveResponse; import com.aliyuncs.brinekingdom.model.v20190627.CheckReceiveResponse.ConsistentDemandResponseList; import com.aliyuncs.transform.UnmarshallerContext; public class CheckReceiveResponseUnmarshaller { public static CheckReceiveResponse unmarshall(CheckReceiveResponse checkReceiveResponse, UnmarshallerContext _ctx) { checkReceiveResponse.setRequestId(_ctx.stringValue("CheckReceiveResponse.RequestId")); checkReceiveResponse.setMessage(_ctx.stringValue("CheckReceiveResponse.Message")); checkReceiveResponse.setSuccess(_ctx.booleanValue("CheckReceiveResponse.Success")); List<ConsistentDemandResponseList> result = new ArrayList<ConsistentDemandResponseList>(); for (int i = 0; i < _ctx.lengthValue("CheckReceiveResponse.Result.Length"); i++) { ConsistentDemandResponseList consistentDemandResponseList = new ConsistentDemandResponseList(); consistentDemandResponseList.setConsistentDemandId(_ctx.longValue("CheckReceiveResponse.Result["+ i +"].ConsistentDemandId")); consistentDemandResponseList.setErrorMsg(_ctx.stringValue("CheckReceiveResponse.Result["+ i +"].ErrorMsg")); consistentDemandResponseList.setSource(_ctx.stringValue("CheckReceiveResponse.Result["+ i +"].Source")); consistentDemandResponseList.setSourceId(_ctx.stringValue("CheckReceiveResponse.Result["+ i +"].SourceId")); consistentDemandResponseList.setSuccess(_ctx.booleanValue("CheckReceiveResponse.Result["+ i +"].Success")); result.add(consistentDemandResponseList); } checkReceiveResponse.setResult(result); return checkReceiveResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/CreateLxProjectResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.CreateLxProjectResponse; import com.aliyuncs.brinekingdom.model.v20190627.CreateLxProjectResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class CreateLxProjectResponseUnmarshaller { public static CreateLxProjectResponse unmarshall(CreateLxProjectResponse createLxProjectResponse, UnmarshallerContext _ctx) { createLxProjectResponse.setSuccess(_ctx.booleanValue("CreateLxProjectResponse.success")); createLxProjectResponse.setErrorCode(_ctx.stringValue("CreateLxProjectResponse.errorCode")); createLxProjectResponse.setMsg(_ctx.stringValue("CreateLxProjectResponse.msg")); createLxProjectResponse.setTotalItems(_ctx.longValue("CreateLxProjectResponse.totalItems")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("CreateLxProjectResponse.data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setConstructionTeam(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].constructionTeam")); dataItem.setSourceNumber(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].sourceNumber")); dataItem.setProjectId(_ctx.longValue("CreateLxProjectResponse.data["+ i +"].projectId")); dataItem.setProjectNo(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].projectNo")); dataItem.setUser(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].user")); dataItem.setRemark(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].remark")); dataItem.setProjectSource(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].projectSource")); dataItem.setExtInfo(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].extInfo")); dataItem.setSystemSource(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].systemSource")); dataItem.setIsStanderProcess(_ctx.integerValue("CreateLxProjectResponse.data["+ i +"].isStanderProcess")); dataItem.setCancelProjectUrl(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].cancelProjectUrl")); dataItem.setSourceSystemUrl(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].sourceSystemUrl")); dataItem.setInitWiringUrl(_ctx.stringValue("CreateLxProjectResponse.data["+ i +"].initWiringUrl")); data.add(dataItem); } createLxProjectResponse.setData(data); return createLxProjectResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/DeleteConsistentDemandResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.DeleteConsistentDemandResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteConsistentDemandResponseUnmarshaller { public static DeleteConsistentDemandResponse unmarshall(DeleteConsistentDemandResponse deleteConsistentDemandResponse, UnmarshallerContext _ctx) { deleteConsistentDemandResponse.setRequestId(_ctx.stringValue("DeleteConsistentDemandResponse.RequestId")); deleteConsistentDemandResponse.setMessage(_ctx.stringValue("DeleteConsistentDemandResponse.Message")); deleteConsistentDemandResponse.setSuccess(_ctx.booleanValue("DeleteConsistentDemandResponse.Success")); deleteConsistentDemandResponse.setResult(_ctx.longValue("DeleteConsistentDemandResponse.Result")); return deleteConsistentDemandResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/DeleteDemandReverseByIdResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.DeleteDemandReverseByIdResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteDemandReverseByIdResponseUnmarshaller { public static DeleteDemandReverseByIdResponse unmarshall(DeleteDemandReverseByIdResponse deleteDemandReverseByIdResponse, UnmarshallerContext _ctx) { deleteDemandReverseByIdResponse.setRequestId(_ctx.stringValue("DeleteDemandReverseByIdResponse.RequestId")); deleteDemandReverseByIdResponse.setTraceId(_ctx.stringValue("DeleteDemandReverseByIdResponse.TraceId")); deleteDemandReverseByIdResponse.setErrorMessage(_ctx.stringValue("DeleteDemandReverseByIdResponse.ErrorMessage")); deleteDemandReverseByIdResponse.setResultCode(_ctx.stringValue("DeleteDemandReverseByIdResponse.ResultCode")); deleteDemandReverseByIdResponse.setSuccess(_ctx.booleanValue("DeleteDemandReverseByIdResponse.Success")); deleteDemandReverseByIdResponse.setResult(_ctx.booleanValue("DeleteDemandReverseByIdResponse.Result")); return deleteDemandReverseByIdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetAllPrimaryProdResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetAllPrimaryProdResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetAllPrimaryProdResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetAllPrimaryProdResponseUnmarshaller { public static GetAllPrimaryProdResponse unmarshall(GetAllPrimaryProdResponse getAllPrimaryProdResponse, UnmarshallerContext _ctx) { getAllPrimaryProdResponse.setRequestId(_ctx.stringValue("GetAllPrimaryProdResponse.RequestId")); getAllPrimaryProdResponse.set_Class(_ctx.stringValue("GetAllPrimaryProdResponse.Class")); getAllPrimaryProdResponse.setErrorMessage(_ctx.stringValue("GetAllPrimaryProdResponse.ErrorMessage")); getAllPrimaryProdResponse.setSuccess(_ctx.booleanValue("GetAllPrimaryProdResponse.Success")); getAllPrimaryProdResponse.setResultCode(_ctx.stringValue("GetAllPrimaryProdResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("GetAllPrimaryProdResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAoneId(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].AoneId")); resultItem.setAoneName(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].AoneName")); resultItem.set_Class(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].Class")); resultItem.setProductClass(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductClass")); resultItem.setProductClassCN(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductClassCN")); resultItem.setProductCode(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductCode")); resultItem.setProductEnName(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductEnName")); resultItem.setProductLineCN(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductLineCN")); resultItem.setProductLineEN(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductLineEN")); resultItem.setProductName(_ctx.stringValue("GetAllPrimaryProdResponse.Result["+ i +"].ProductName")); result.add(resultItem); } getAllPrimaryProdResponse.setResult(result); return getAllPrimaryProdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetConsistentDemandListResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandDeploy; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue.ServerDemandListItem; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem.ServerDemandListItem6; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ExchangeValue; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ExchangeValue.ServerDemandListItem11; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.NetPackValue; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.NetPackValue.ItemListItem; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.PubNetAccessValue; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.PubNetAccessValue.ItemListItem2; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.RackValue; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.RackValue.ItemListItem9; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ServerDTO; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ServiceValue; import com.aliyuncs.brinekingdom.model.v20190627.GetConsistentDemandListResponse.ResultItem.DemandItem.ServiceValue.ItemListItem4; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class GetConsistentDemandListResponseUnmarshaller { public static GetConsistentDemandListResponse unmarshall(GetConsistentDemandListResponse getConsistentDemandListResponse, UnmarshallerContext _ctx) { getConsistentDemandListResponse.setRequestId(_ctx.stringValue("GetConsistentDemandListResponse.RequestId")); getConsistentDemandListResponse.setMessage(_ctx.stringValue("GetConsistentDemandListResponse.Message")); getConsistentDemandListResponse.setSuccess(_ctx.booleanValue("GetConsistentDemandListResponse.Success")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("GetConsistentDemandListResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAscriptionClassName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AscriptionClassName")); resultItem.setDeployProduct2Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct2Name")); resultItem.setItemType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ItemType")); resultItem.setMatchCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MatchCnt")); resultItem.setOrgName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].OrgName")); resultItem.setBusinessMode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BusinessMode")); resultItem.setBrandName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BrandName")); resultItem.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Item")); resultItem.setFactoryInstall(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].FactoryInstall")); resultItem.setRequireType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].RequireType")); resultItem.setModelLoad(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ModelLoad")); resultItem.setServerAssignCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ServerAssignCnt")); resultItem.setOsId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].OsId")); resultItem.setLadingProcessQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].LadingProcessQty")); resultItem.setProjectTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectTypeName")); resultItem.setStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Status")); resultItem.setCbmOwner(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].CbmOwner")); resultItem.setProductType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProductType")); resultItem.setProduct3Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product3Name")); resultItem.setScenario(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Scenario")); resultItem.setNetworkArch(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].NetworkArch")); resultItem.setUid(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Uid")); resultItem.setGmtCreate(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].GmtCreate")); resultItem.setScPlanIds(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ScPlanIds")); resultItem.setSupplyQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyQty")); resultItem.setId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].Id")); resultItem.setAssetReceiverNick(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AssetReceiverNick")); resultItem.setUseCapacityCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseCapacityCnt")); resultItem.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product3")); resultItem.setProduct1(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product1")); resultItem.setProjectName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectName")); resultItem.setProduct2(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product2")); resultItem.setSourceId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SourceId")); resultItem.setProduct1Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product1Name")); resultItem.setMoveExecuteQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MoveExecuteQty")); resultItem.setUseL2PoolCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseL2PoolCnt")); resultItem.setAscriptionClass(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AscriptionClass")); resultItem.setExpectTurnOverDateStr(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ExpectTurnOverDateStr")); resultItem.setDeployProduct1(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct1")); resultItem.setDeployProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct3")); resultItem.setDeployProduct2(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct2")); resultItem.setMoveQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MoveQty")); resultItem.setLogicZone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].LogicZone")); resultItem.setSupplyArea(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyArea")); resultItem.setManufacturingBrandCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ManufacturingBrandCode")); resultItem.setExecuteFlag(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].ExecuteFlag")); resultItem.setDemandClass(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandClass")); resultItem.setMoveDeliveredQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].MoveDeliveredQty")); resultItem.setTenantId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].TenantId")); resultItem.setDeployProduct3Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct3Name")); resultItem.setModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Model")); resultItem.setOtherMsg(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].OtherMsg")); resultItem.setTag(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Tag")); resultItem.setAutoExecute(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].AutoExecute")); resultItem.setDemandQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandQty")); resultItem.setBusinessType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BusinessType")); resultItem.setIdc(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Idc")); resultItem.setBrandCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BrandCode")); resultItem.setCreator(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Creator")); resultItem.setBrandId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].BrandId")); resultItem.setInstallName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].InstallName")); resultItem.setEvaluateStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].EvaluateStatus")); resultItem.setFcstOccupyStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].FcstOccupyStatus")); resultItem.setCapacityResponseStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].CapacityResponseStatus")); resultItem.setAblePurchaseLading(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].AblePurchaseLading")); resultItem.setManufacturingBrandId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].ManufacturingBrandId")); resultItem.setSafeYear(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SafeYear")); resultItem.setMoveOrders(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].MoveOrders")); resultItem.setSupplyLevel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyLevel")); resultItem.setRequireTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].RequireTypeName")); resultItem.setConfigModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ConfigModel")); resultItem.setUpdater(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Updater")); resultItem.setExpectTurnOverDate(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].ExpectTurnOverDate")); resultItem.setMoveReason(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].MoveReason")); resultItem.setSupplyType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyType")); resultItem.setDeployProduct1Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DeployProduct1Name")); resultItem.setInstall(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].Install")); resultItem.setWhiteOrder(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].WhiteOrder")); resultItem.setUseSupplyCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseSupplyCnt")); resultItem.setAzone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Azone")); resultItem.setPurchaseCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].PurchaseCnt")); resultItem.setShiftMethod(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ShiftMethod")); resultItem.setBenefitOld(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].BenefitOld")); resultItem.setIndustryLine(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].IndustryLine")); resultItem.setPurchaseOrders(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].PurchaseOrders")); resultItem.setFcstId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].FcstId")); resultItem.setPriority(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Priority")); resultItem.setUsePlanCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePlanCnt")); resultItem.setRackAssignCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].RackAssignCnt")); resultItem.setAssignVersion(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AssignVersion")); resultItem.setFeatureStr(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].FeatureStr")); resultItem.setFlag(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].Flag")); resultItem.setExecuteError(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ExecuteError")); resultItem.setAssetReceiver(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AssetReceiver")); resultItem.setUsePoolInPlaceCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePoolInPlaceCnt")); resultItem.setSectionRackStatus(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SectionRackStatus")); resultItem.setProjectType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectType")); resultItem.setHasSolution(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].HasSolution")); resultItem.setRegion(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Region")); resultItem.setUseFcst(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UseFcst")); resultItem.setCreatorName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].CreatorName")); resultItem.setOperator(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Operator")); resultItem.setBtoFlag(_ctx.booleanValue("GetConsistentDemandListResponse.Result["+ i +"].BtoFlag")); resultItem.setClassZone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ClassZone")); resultItem.setOrg(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Org")); resultItem.setManualBrandName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ManualBrandName")); resultItem.setGmtModified(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].GmtModified")); resultItem.setClassZoneName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ClassZoneName")); resultItem.setSectionDetail(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SectionDetail")); resultItem.setReplenishUnit(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ReplenishUnit")); resultItem.setSource(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Source")); resultItem.setProduct2Name(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Product2Name")); resultItem.setExecuteQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ExecuteQty")); resultItem.setSupplyDeliveredQty(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].SupplyDeliveredQty")); resultItem.setFeatures(_ctx.mapValue("GetConsistentDemandListResponse.Result["+ i +"].Features")); resultItem.setProjectCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProjectCode")); resultItem.setInstallId(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].InstallId")); resultItem.setSectionRackAssignCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].SectionRackAssignCnt")); resultItem.setUsePoolMoveCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePoolMoveCnt")); resultItem.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].AppGroup")); resultItem.setUpdaterName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].UpdaterName")); resultItem.setComments(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Comments")); resultItem.setUsePoolCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].UsePoolCnt")); resultItem.setOsName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].OsName")); resultItem.setError(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Error")); resultItem.setNic(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Nic")); resultItem.setCluster(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].Cluster")); resultItem.setBusinessTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].BusinessTypeName")); resultItem.setProcessId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].ProcessId")); resultItem.setSafeZone(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].SafeZone")); resultItem.setToConfirmCnt(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].ToConfirmCnt")); List<String> rackInfo = new ArrayList<String>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].RackInfo.Length"); j++) { rackInfo.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].RackInfo["+ j +"]")); } resultItem.setRackInfo(rackInfo); DemandDeploy demandDeploy = new DemandDeploy(); demandDeploy.setNetArch(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.NetArch")); demandDeploy.setFrameworkClass(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.FrameworkClass")); demandDeploy.setDeployMode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployMode")); demandDeploy.setDeployLocation(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployLocation")); demandDeploy.setDeployArch(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployArch")); demandDeploy.setNodeType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.NodeType")); demandDeploy.setDeployLevel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployLevel")); demandDeploy.setBoxModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.BoxModel")); demandDeploy.setPublicNetWorkExport(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.PublicNetWorkExport")); demandDeploy.setBoxUpLink(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.BoxUpLink")); demandDeploy.setDeployRole(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.DeployRole")); demandDeploy.setBoxDownLink(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandDeploy.BoxDownLink")); resultItem.setDemandDeploy(demandDeploy); DemandItem demandItem = new DemandItem(); demandItem.setDemandItemType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.DemandItemType")); ServerDTO serverDTO = new ServerDTO(); serverDTO.setConfig(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServerDTO.Config")); serverDTO.setModel(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServerDTO.Model")); serverDTO.setNic(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServerDTO.Nic")); demandItem.setServerDTO(serverDTO); NetPackValue netPackValue = new NetPackValue(); List<ItemListItem> itemList = new ArrayList<ItemListItem>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList.Length"); j++) { ItemListItem itemListItem = new ItemListItem(); itemListItem.setRole(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Role")); itemListItem.setDemandQty(_ctx.longValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].DemandQty")); itemListItem.setResourceType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].ResourceType")); itemListItem.setFramework(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Framework")); itemListItem.setRemark(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Remark")); itemList.add(itemListItem); } netPackValue.setItemList(itemList); demandItem.setNetPackValue(netPackValue); PubNetAccessValue pubNetAccessValue = new PubNetAccessValue(); List<ItemListItem2> itemList1 = new ArrayList<ItemListItem2>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList.Length"); j++) { ItemListItem2 itemListItem2 = new ItemListItem2(); itemListItem2.setPrice(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Price")); itemListItem2.setBandwidth(_ctx.floatValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Bandwidth")); itemListItem2.setAccessType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].AccessType")); itemList1.add(itemListItem2); } pubNetAccessValue.setItemList1(itemList1); demandItem.setPubNetAccessValue(pubNetAccessValue); ServiceValue serviceValue = new ServiceValue(); List<ItemListItem4> itemList3 = new ArrayList<ItemListItem4>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList.Length"); j++) { ItemListItem4 itemListItem4 = new ItemListItem4(); itemListItem4.setServiceTypeName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceTypeName")); itemListItem4.setArea(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Area")); itemListItem4.setYear(_ctx.floatValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Year")); itemListItem4.setServiceType(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceType")); itemListItem4.setAmount(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Amount")); itemListItem4.setIdc(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Idc")); itemListItem4.setServiceItemName(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItemName")); itemListItem4.setCity(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].City")); itemListItem4.setServiceItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItem")); itemListItem4.setRemark(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Remark")); itemList3.add(itemListItem4); } serviceValue.setItemList3(itemList3); demandItem.setServiceValue(serviceValue); ComboValue comboValue = new ComboValue(); comboValue.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.SkuId")); List<ServerDemandListItem> serverDemandList = new ArrayList<ServerDemandListItem>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList.Length"); j++) { ServerDemandListItem serverDemandListItem = new ServerDemandListItem(); serverDemandListItem.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Item")); serverDemandListItem.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Product3")); serverDemandListItem.setAgreedQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AgreedQuantity")); serverDemandListItem.setQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Quantity")); serverDemandListItem.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SkuId")); serverDemandListItem.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AppGroup")); List<String> snList = new ArrayList<String>(); for (int k = 0; k < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList.Length"); k++) { snList.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList["+ k +"]")); } serverDemandListItem.setSnList(snList); serverDemandList.add(serverDemandListItem); } comboValue.setServerDemandList(serverDemandList); List<WholeRackListItem> wholeRackList = new ArrayList<WholeRackListItem>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList.Length"); j++) { WholeRackListItem wholeRackListItem = new WholeRackListItem(); wholeRackListItem.setOrder(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].Order")); wholeRackListItem.setRackPackage(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].RackPackage")); List<ServerDemandListItem6> serverDemandList5 = new ArrayList<ServerDemandListItem6>(); for (int k = 0; k < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList.Length"); k++) { ServerDemandListItem6 serverDemandListItem6 = new ServerDemandListItem6(); serverDemandListItem6.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Item")); serverDemandListItem6.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Product3")); serverDemandListItem6.setAgreedQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AgreedQuantity")); serverDemandListItem6.setQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Quantity")); serverDemandListItem6.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SkuId")); serverDemandListItem6.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AppGroup")); List<String> snList7 = new ArrayList<String>(); for (int l = 0; l < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList.Length"); l++) { snList7.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList["+ l +"]")); } serverDemandListItem6.setSnList7(snList7); serverDemandList5.add(serverDemandListItem6); } wholeRackListItem.setServerDemandList5(serverDemandList5); wholeRackList.add(wholeRackListItem); } comboValue.setWholeRackList(wholeRackList); demandItem.setComboValue(comboValue); RackValue rackValue = new RackValue(); List<ItemListItem9> itemList8 = new ArrayList<ItemListItem9>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList.Length"); j++) { ItemListItem9 itemListItem9 = new ItemListItem9(); itemListItem9.setRackNum(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RackNum")); itemListItem9.setRoomCode(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RoomCode")); itemListItem9.setPower(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].Power")); itemListItem9.setPowUtilizationRate(_ctx.floatValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].PowUtilizationRate")); itemList8.add(itemListItem9); } rackValue.setItemList8(itemList8); demandItem.setRackValue(rackValue); ExchangeValue exchangeValue = new ExchangeValue(); List<String> exchangeList = new ArrayList<String>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList.Length"); j++) { exchangeList.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList["+ j +"]")); } exchangeValue.setExchangeList(exchangeList); List<ServerDemandListItem11> serverDemandList10 = new ArrayList<ServerDemandListItem11>(); for (int j = 0; j < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList.Length"); j++) { ServerDemandListItem11 serverDemandListItem11 = new ServerDemandListItem11(); serverDemandListItem11.setItem(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Item")); serverDemandListItem11.setProduct3(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Product3")); serverDemandListItem11.setAgreedQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AgreedQuantity")); serverDemandListItem11.setQuantity(_ctx.integerValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Quantity")); serverDemandListItem11.setSkuId(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SkuId")); serverDemandListItem11.setAppGroup(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AppGroup")); List<String> snList12 = new ArrayList<String>(); for (int k = 0; k < _ctx.lengthValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList.Length"); k++) { snList12.add(_ctx.stringValue("GetConsistentDemandListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList["+ k +"]")); } serverDemandListItem11.setSnList12(snList12); serverDemandList10.add(serverDemandListItem11); } exchangeValue.setServerDemandList10(serverDemandList10); demandItem.setExchangeValue(exchangeValue); resultItem.setDemandItem(demandItem); result.add(resultItem); } getConsistentDemandListResponse.setResult(result); return getConsistentDemandListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetListModelResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetListModelResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetListModelResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetListModelResponseUnmarshaller { public static GetListModelResponse unmarshall(GetListModelResponse getListModelResponse, UnmarshallerContext _ctx) { getListModelResponse.setRequestId(_ctx.stringValue("GetListModelResponse.RequestId")); getListModelResponse.set_Class(_ctx.stringValue("GetListModelResponse.Class")); getListModelResponse.setErrorMessage(_ctx.stringValue("GetListModelResponse.ErrorMessage")); getListModelResponse.setSuccess(_ctx.booleanValue("GetListModelResponse.Success")); getListModelResponse.setResultCode(_ctx.stringValue("GetListModelResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("GetListModelResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setKey(_ctx.stringValue("GetListModelResponse.Result["+ i +"].Key")); resultItem.setValue(_ctx.stringValue("GetListModelResponse.Result["+ i +"].Value")); result.add(resultItem); } getListModelResponse.setResult(result); return getListModelResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetListNetBandResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetListNetBandResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetListNetBandResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetListNetBandResponseUnmarshaller { public static GetListNetBandResponse unmarshall(GetListNetBandResponse getListNetBandResponse, UnmarshallerContext _ctx) { getListNetBandResponse.setRequestId(_ctx.stringValue("GetListNetBandResponse.RequestId")); getListNetBandResponse.set_Class(_ctx.stringValue("GetListNetBandResponse.Class")); getListNetBandResponse.setErrorMessage(_ctx.stringValue("GetListNetBandResponse.ErrorMessage")); getListNetBandResponse.setSuccess(_ctx.booleanValue("GetListNetBandResponse.Success")); getListNetBandResponse.setResultCode(_ctx.stringValue("GetListNetBandResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("GetListNetBandResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.set_Class(_ctx.stringValue("GetListNetBandResponse.Result["+ i +"].Class")); resultItem.setKey(_ctx.stringValue("GetListNetBandResponse.Result["+ i +"].Key")); resultItem.setValue(_ctx.stringValue("GetListNetBandResponse.Result["+ i +"].Value")); result.add(resultItem); } getListNetBandResponse.setResult(result); return getListNetBandResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetOrganizationByQueryResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetOrganizationByQueryResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetOrganizationByQueryResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetOrganizationByQueryResponseUnmarshaller { public static GetOrganizationByQueryResponse unmarshall(GetOrganizationByQueryResponse getOrganizationByQueryResponse, UnmarshallerContext _ctx) { getOrganizationByQueryResponse.setRequestId(_ctx.stringValue("GetOrganizationByQueryResponse.RequestId")); getOrganizationByQueryResponse.set_Class(_ctx.stringValue("GetOrganizationByQueryResponse.Class")); getOrganizationByQueryResponse.setErrorMessage(_ctx.stringValue("GetOrganizationByQueryResponse.ErrorMessage")); getOrganizationByQueryResponse.setSuccess(_ctx.booleanValue("GetOrganizationByQueryResponse.Success")); getOrganizationByQueryResponse.setResultCode(_ctx.stringValue("GetOrganizationByQueryResponse.ResultCode")); List<Data> result = new ArrayList<Data>(); for (int i = 0; i < _ctx.lengthValue("GetOrganizationByQueryResponse.Result.Length"); i++) { Data data = new Data(); data.setBusinessType(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].BusinessType")); data.setBusinessTypeName(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].BusinessTypeName")); data.set_Class(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Class")); data.setDivision(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Division")); data.setGmtCreate(_ctx.longValue("GetOrganizationByQueryResponse.Result["+ i +"].GmtCreate")); data.setGmtModified(_ctx.longValue("GetOrganizationByQueryResponse.Result["+ i +"].GmtModified")); data.setId(_ctx.longValue("GetOrganizationByQueryResponse.Result["+ i +"].Id")); data.setOrgName(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].OrgName")); data.setOrgRemark(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].OrgRemark")); data.setProduct1(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product1")); data.setProduct1Name(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product1Name")); data.setProduct2(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product2")); data.setProduct2Name(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].Product2Name")); data.setRequireType(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].RequireType")); data.setRequireTypeName(_ctx.stringValue("GetOrganizationByQueryResponse.Result["+ i +"].RequireTypeName")); result.add(data); } getOrganizationByQueryResponse.setResult(result); return getOrganizationByQueryResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanByIdResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanByIdResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanByIdResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class GetPlanByIdResponseUnmarshaller { public static GetPlanByIdResponse unmarshall(GetPlanByIdResponse getPlanByIdResponse, UnmarshallerContext _ctx) { getPlanByIdResponse.setRequestId(_ctx.stringValue("GetPlanByIdResponse.RequestId")); getPlanByIdResponse.setErrorMessage(_ctx.stringValue("GetPlanByIdResponse.ErrorMessage")); getPlanByIdResponse.setSuccess(_ctx.booleanValue("GetPlanByIdResponse.Success")); getPlanByIdResponse.setResultCode(_ctx.stringValue("GetPlanByIdResponse.ResultCode")); Result result = new Result(); result.setAgreement(_ctx.stringValue("GetPlanByIdResponse.Result.Agreement")); result.setAllocateAmount(_ctx.integerValue("GetPlanByIdResponse.Result.AllocateAmount")); result.setAppGroupId(_ctx.longValue("GetPlanByIdResponse.Result.AppGroupId")); result.setAppGroupName(_ctx.stringValue("GetPlanByIdResponse.Result.AppGroupName")); result.setApplyType(_ctx.longValue("GetPlanByIdResponse.Result.ApplyType")); result.setAssetReceiver(_ctx.stringValue("GetPlanByIdResponse.Result.AssetReceiver")); result.setAssetReceiverNick(_ctx.stringValue("GetPlanByIdResponse.Result.AssetReceiverNick")); result.setAutoLading(_ctx.longValue("GetPlanByIdResponse.Result.AutoLading")); result.setAzone(_ctx.stringValue("GetPlanByIdResponse.Result.Azone")); result.setBenefitOld(_ctx.integerValue("GetPlanByIdResponse.Result.BenefitOld")); result.setBusiness(_ctx.stringValue("GetPlanByIdResponse.Result.Business")); result.setBusinessEnName(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessEnName")); result.setBusinessMode(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessMode")); result.setBusinessModeName(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessModeName")); result.setBusinessName(_ctx.stringValue("GetPlanByIdResponse.Result.BusinessName")); result.setCbmDemander(_ctx.stringValue("GetPlanByIdResponse.Result.CbmDemander")); result.setChangeMsg(_ctx.stringValue("GetPlanByIdResponse.Result.ChangeMsg")); result.setChangeSuccess(_ctx.longValue("GetPlanByIdResponse.Result.ChangeSuccess")); result.set_Class(_ctx.stringValue("GetPlanByIdResponse.Result.Class")); result.setClassZoneCode(_ctx.stringValue("GetPlanByIdResponse.Result.ClassZoneCode")); result.setClassZoneName(_ctx.stringValue("GetPlanByIdResponse.Result.ClassZoneName")); result.setCloudDeployProduct1(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct1")); result.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct1Name")); result.setCloudDeployProduct2(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct2")); result.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct2Name")); result.setCloudDeployProduct3(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct3")); result.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanByIdResponse.Result.CloudDeployProduct3Name")); result.setCmC(_ctx.stringValue("GetPlanByIdResponse.Result.CmC")); result.setCmP(_ctx.stringValue("GetPlanByIdResponse.Result.CmP")); result.setCmU(_ctx.stringValue("GetPlanByIdResponse.Result.CmU")); result.setCmV(_ctx.stringValue("GetPlanByIdResponse.Result.CmV")); result.setCnt(_ctx.longValue("GetPlanByIdResponse.Result.Cnt")); result.setCntString(_ctx.stringValue("GetPlanByIdResponse.Result.CntString")); result.setComment(_ctx.stringValue("GetPlanByIdResponse.Result.Comment")); result.setCountry(_ctx.stringValue("GetPlanByIdResponse.Result.Country")); result.setCreateTime(_ctx.longValue("GetPlanByIdResponse.Result.CreateTime")); result.setCreator(_ctx.stringValue("GetPlanByIdResponse.Result.Creator")); result.setCreatorNic(_ctx.stringValue("GetPlanByIdResponse.Result.CreatorNic")); result.setDeliveryAmount(_ctx.integerValue("GetPlanByIdResponse.Result.DeliveryAmount")); result.setEffectStatus(_ctx.integerValue("GetPlanByIdResponse.Result.EffectStatus")); result.setExpireDate(_ctx.longValue("GetPlanByIdResponse.Result.ExpireDate")); result.setId(_ctx.longValue("GetPlanByIdResponse.Result.Id")); result.setInstall(_ctx.longValue("GetPlanByIdResponse.Result.Install")); result.setInstallId(_ctx.longValue("GetPlanByIdResponse.Result.InstallId")); result.setInstallName(_ctx.stringValue("GetPlanByIdResponse.Result.InstallName")); result.setLadingQuantity(_ctx.integerValue("GetPlanByIdResponse.Result.LadingQuantity")); result.setLadingStatus(_ctx.longValue("GetPlanByIdResponse.Result.LadingStatus")); result.setLineNumber(_ctx.integerValue("GetPlanByIdResponse.Result.LineNumber")); result.setLogicZoneCode(_ctx.stringValue("GetPlanByIdResponse.Result.LogicZoneCode")); result.setLogicZoneName(_ctx.stringValue("GetPlanByIdResponse.Result.LogicZoneName")); result.setMachineType(_ctx.stringValue("GetPlanByIdResponse.Result.MachineType")); result.setManufacturerBrand(_ctx.longValue("GetPlanByIdResponse.Result.ManufacturerBrand")); result.setManufacturerBrandName(_ctx.stringValue("GetPlanByIdResponse.Result.ManufacturerBrandName")); result.setModelLoad(_ctx.longValue("GetPlanByIdResponse.Result.ModelLoad")); result.setModelLoadString(_ctx.stringValue("GetPlanByIdResponse.Result.ModelLoadString")); result.setModify(_ctx.booleanValue("GetPlanByIdResponse.Result.Modify")); result.setMsg(_ctx.stringValue("GetPlanByIdResponse.Result.Msg")); result.setNakedDelivery(_ctx.longValue("GetPlanByIdResponse.Result.NakedDelivery")); result.setNakedDeliveryName(_ctx.stringValue("GetPlanByIdResponse.Result.NakedDeliveryName")); result.setNetArch(_ctx.stringValue("GetPlanByIdResponse.Result.NetArch")); result.setNic(_ctx.stringValue("GetPlanByIdResponse.Result.Nic")); result.setOldCnt(_ctx.integerValue("GetPlanByIdResponse.Result.OldCnt")); result.setOrderId(_ctx.longValue("GetPlanByIdResponse.Result.OrderId")); result.setOrgKey(_ctx.stringValue("GetPlanByIdResponse.Result.OrgKey")); result.setOriginId(_ctx.longValue("GetPlanByIdResponse.Result.OriginId")); result.setOsId(_ctx.longValue("GetPlanByIdResponse.Result.OsId")); result.setOsName(_ctx.stringValue("GetPlanByIdResponse.Result.OsName")); result.setOutId(_ctx.stringValue("GetPlanByIdResponse.Result.OutId")); result.setPickAmount(_ctx.integerValue("GetPlanByIdResponse.Result.PickAmount")); result.setPickOrderId(_ctx.longValue("GetPlanByIdResponse.Result.PickOrderId")); result.setPlanType(_ctx.longValue("GetPlanByIdResponse.Result.PlanType")); result.setPriority(_ctx.stringValue("GetPlanByIdResponse.Result.Priority")); result.setProcessId(_ctx.stringValue("GetPlanByIdResponse.Result.ProcessId")); result.setProduct1(_ctx.stringValue("GetPlanByIdResponse.Result.Product1")); result.setProduct1Name(_ctx.stringValue("GetPlanByIdResponse.Result.Product1Name")); result.setProduct2(_ctx.stringValue("GetPlanByIdResponse.Result.Product2")); result.setProduct2Name(_ctx.stringValue("GetPlanByIdResponse.Result.Product2Name")); result.setProduct3(_ctx.stringValue("GetPlanByIdResponse.Result.Product3")); result.setProduct3EnName(_ctx.stringValue("GetPlanByIdResponse.Result.Product3EnName")); result.setProduct3Name(_ctx.stringValue("GetPlanByIdResponse.Result.Product3Name")); result.setProjectCode(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectCode")); result.setProjectName(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectName")); result.setProjectType(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectType")); result.setProjectTypeName(_ctx.stringValue("GetPlanByIdResponse.Result.ProjectTypeName")); result.setQuotaPlanId(_ctx.longValue("GetPlanByIdResponse.Result.QuotaPlanId")); result.setRegion(_ctx.stringValue("GetPlanByIdResponse.Result.Region")); result.setReportId(_ctx.stringValue("GetPlanByIdResponse.Result.ReportId")); result.setRequireType(_ctx.stringValue("GetPlanByIdResponse.Result.RequireType")); result.setRequireTypeName(_ctx.stringValue("GetPlanByIdResponse.Result.RequireTypeName")); result.setRoomCode(_ctx.stringValue("GetPlanByIdResponse.Result.RoomCode")); result.setSafeYear(_ctx.stringValue("GetPlanByIdResponse.Result.SafeYear")); result.setSafeZoneCode(_ctx.stringValue("GetPlanByIdResponse.Result.SafeZoneCode")); result.setSafeZoneName(_ctx.stringValue("GetPlanByIdResponse.Result.SafeZoneName")); result.setScenario(_ctx.stringValue("GetPlanByIdResponse.Result.Scenario")); result.setSource(_ctx.stringValue("GetPlanByIdResponse.Result.Source")); result.setStatus(_ctx.longValue("GetPlanByIdResponse.Result.Status")); result.setStatusName(_ctx.stringValue("GetPlanByIdResponse.Result.StatusName")); result.setSubordinateIndustryLine(_ctx.stringValue("GetPlanByIdResponse.Result.SubordinateIndustryLine")); result.setSubordinateIndustryLineName(_ctx.stringValue("GetPlanByIdResponse.Result.SubordinateIndustryLineName")); result.setSuccess(_ctx.longValue("GetPlanByIdResponse.Result.Success")); result.setTime(_ctx.longValue("GetPlanByIdResponse.Result.Time")); result.setTimeSpan(_ctx.longValue("GetPlanByIdResponse.Result.TimeSpan")); result.setTimeString(_ctx.stringValue("GetPlanByIdResponse.Result.TimeString")); result.setUpdateTime(_ctx.longValue("GetPlanByIdResponse.Result.UpdateTime")); result.setUpdater(_ctx.stringValue("GetPlanByIdResponse.Result.Updater")); result.setUpdaterNic(_ctx.stringValue("GetPlanByIdResponse.Result.UpdaterNic")); result.setVersion(_ctx.longValue("GetPlanByIdResponse.Result.Version")); getPlanByIdResponse.setResult(result); return getPlanByIdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListResponse.Result; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListResponse.Result.DataListItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetPlanListResponseUnmarshaller { public static GetPlanListResponse unmarshall(GetPlanListResponse getPlanListResponse, UnmarshallerContext _ctx) { getPlanListResponse.setRequestId(_ctx.stringValue("GetPlanListResponse.RequestId")); getPlanListResponse.setErrorMessage(_ctx.stringValue("GetPlanListResponse.ErrorMessage")); getPlanListResponse.setSuccess(_ctx.booleanValue("GetPlanListResponse.Success")); getPlanListResponse.setResultCode(_ctx.stringValue("GetPlanListResponse.ResultCode")); Result result = new Result(); result.setCurrentPage(_ctx.longValue("GetPlanListResponse.Result.CurrentPage")); result.setPageCount(_ctx.longValue("GetPlanListResponse.Result.PageCount")); result.setPageSize(_ctx.longValue("GetPlanListResponse.Result.PageSize")); result.setTotalCount(_ctx.longValue("GetPlanListResponse.Result.TotalCount")); List<DataListItem> dataList = new ArrayList<DataListItem>(); for (int i = 0; i < _ctx.lengthValue("GetPlanListResponse.Result.DataList.Length"); i++) { DataListItem dataListItem = new DataListItem(); dataListItem.setAccessory(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Accessory")); dataListItem.setAgreement(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Agreement")); dataListItem.setAllocateAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].AllocateAmount")); dataListItem.setAppGroupId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].AppGroupId")); dataListItem.setAppGroupName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].AppGroupName")); dataListItem.setApplyType(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ApplyType")); dataListItem.setAssetReceiver(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].AssetReceiver")); dataListItem.setAssetReceiverNick(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].AssetReceiverNick")); dataListItem.setAutoLading(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].AutoLading")); dataListItem.setAzone(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Azone")); dataListItem.setBenefitOld(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].BenefitOld")); dataListItem.setBenefitOldName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BenefitOldName")); dataListItem.setBusiness(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Business")); dataListItem.setBusinessEnName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessEnName")); dataListItem.setBusinessMode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessMode")); dataListItem.setBusinessModeName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessModeName")); dataListItem.setBusinessName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].BusinessName")); dataListItem.setCbmDemander(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CbmDemander")); dataListItem.setChangeMsg(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ChangeMsg")); dataListItem.setChangeSuccess(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ChangeSuccess")); dataListItem.setChannelName1(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ChannelName1")); dataListItem.setChannelName2(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ChannelName2")); dataListItem.setClassZoneCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ClassZoneCode")); dataListItem.setClassZoneName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ClassZoneName")); dataListItem.setCloudDeployProduct1(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct1")); dataListItem.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct1Name")); dataListItem.setCloudDeployProduct2(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct2")); dataListItem.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct2Name")); dataListItem.setCloudDeployProduct3(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct3")); dataListItem.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CloudDeployProduct3Name")); dataListItem.setCmC(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmC")); dataListItem.setCmP(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmP")); dataListItem.setCmU(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmU")); dataListItem.setCmV(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CmV")); dataListItem.setCnt(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Cnt")); dataListItem.setCntString(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CntString")); dataListItem.setComment(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Comment")); dataListItem.setCountry(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Country")); dataListItem.setCreateTime(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].CreateTime")); dataListItem.setCreator(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Creator")); dataListItem.setCreatorNic(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].CreatorNic")); dataListItem.setDeliveryAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].DeliveryAmount")); dataListItem.setEffectStatus(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].EffectStatus")); dataListItem.setExpireDate(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ExpireDate")); dataListItem.setId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Id")); dataListItem.setInstall(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Install")); dataListItem.setInstallId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].InstallId")); dataListItem.setInstallName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].InstallName")); dataListItem.setInstallStr(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].InstallStr")); dataListItem.setLadingQuantity(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].LadingQuantity")); dataListItem.setLadingStatus(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].LadingStatus")); dataListItem.setLineNumber(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].LineNumber")); dataListItem.setLogicZoneCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].LogicZoneCode")); dataListItem.setLogicZoneName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].LogicZoneName")); dataListItem.setMachineType(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].MachineType")); dataListItem.setManufacturerBrand(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ManufacturerBrand")); dataListItem.setManufacturerBrandName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ManufacturerBrandName")); dataListItem.setModelLoad(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].ModelLoad")); dataListItem.setModelLoadString(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ModelLoadString")); dataListItem.setModify(_ctx.booleanValue("GetPlanListResponse.Result.DataList["+ i +"].Modify")); dataListItem.setMsg(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Msg")); dataListItem.setNakedDelivery(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].NakedDelivery")); dataListItem.setNakedDeliveryName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].NakedDeliveryName")); dataListItem.setNetArch(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].NetArch")); dataListItem.setNic(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Nic")); dataListItem.setOldCnt(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].OldCnt")); dataListItem.setOrderId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].OrderId")); dataListItem.setOrgKey(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].OrgKey")); dataListItem.setOriginId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].OriginId")); dataListItem.setOsId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].OsId")); dataListItem.setOsName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].OsName")); dataListItem.setOutId(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].OutId")); dataListItem.setWaitPickAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].WaitPickAmount")); dataListItem.setPickAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].PickAmount")); dataListItem.setDcosPickAmount(_ctx.integerValue("GetPlanListResponse.Result.DataList["+ i +"].DcosPickAmount")); dataListItem.setPickOrderId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].PickOrderId")); dataListItem.setPlanType(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].PlanType")); dataListItem.setPriority(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Priority")); dataListItem.setProcessId(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProcessId")); dataListItem.setProduct1(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product1")); dataListItem.setProduct1Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product1Name")); dataListItem.setProduct2(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product2")); dataListItem.setProduct2Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product2Name")); dataListItem.setProduct3(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product3")); dataListItem.setProduct3EnName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product3EnName")); dataListItem.setProduct3Name(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Product3Name")); dataListItem.setProjectCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectCode")); dataListItem.setProjectName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectName")); dataListItem.setProjectType(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectType")); dataListItem.setProjectTypeName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ProjectTypeName")); dataListItem.setQuotaPlanId(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].QuotaPlanId")); dataListItem.setRegion(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Region")); dataListItem.setReportId(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].ReportId")); dataListItem.setRequireType(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].RequireType")); dataListItem.setRequireTypeName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].RequireTypeName")); dataListItem.setRoomCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].RoomCode")); dataListItem.setSafeYear(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SafeYear")); dataListItem.setSafeZoneCode(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SafeZoneCode")); dataListItem.setSafeZoneName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SafeZoneName")); dataListItem.setScenario(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Scenario")); dataListItem.setSource(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Source")); dataListItem.setStatus(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Status")); dataListItem.setStatusName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].StatusName")); dataListItem.setSubordinateIndustryLine(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SubordinateIndustryLine")); dataListItem.setSubordinateIndustryLineName(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].SubordinateIndustryLineName")); dataListItem.setSuccess(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Success")); dataListItem.setTime(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Time")); dataListItem.setTimeSpan(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].TimeSpan")); dataListItem.setTimeString(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].TimeString")); dataListItem.setUpdateTime(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].UpdateTime")); dataListItem.setUpdater(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].Updater")); dataListItem.setUpdaterNic(_ctx.stringValue("GetPlanListResponse.Result.DataList["+ i +"].UpdaterNic")); dataListItem.setVersion(_ctx.longValue("GetPlanListResponse.Result.DataList["+ i +"].Version")); dataList.add(dataListItem); } result.setDataList(dataList); getPlanListResponse.setResult(result); return getPlanListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetPlanListWithReverseResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse.Result; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse.Result.DataListItem; import com.aliyuncs.brinekingdom.model.v20190627.GetPlanListWithReverseResponse.Result.DataListItem.SplitDataListItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetPlanListWithReverseResponseUnmarshaller { public static GetPlanListWithReverseResponse unmarshall(GetPlanListWithReverseResponse getPlanListWithReverseResponse, UnmarshallerContext _ctx) { getPlanListWithReverseResponse.setRequestId(_ctx.stringValue("GetPlanListWithReverseResponse.RequestId")); getPlanListWithReverseResponse.setErrorMessage(_ctx.stringValue("GetPlanListWithReverseResponse.ErrorMessage")); getPlanListWithReverseResponse.setSuccess(_ctx.booleanValue("GetPlanListWithReverseResponse.Success")); getPlanListWithReverseResponse.setResultCode(_ctx.stringValue("GetPlanListWithReverseResponse.ResultCode")); Result result = new Result(); result.setCurrentPage(_ctx.longValue("GetPlanListWithReverseResponse.Result.CurrentPage")); result.setPageCount(_ctx.longValue("GetPlanListWithReverseResponse.Result.PageCount")); result.setPageSize(_ctx.longValue("GetPlanListWithReverseResponse.Result.PageSize")); result.setTotalCount(_ctx.longValue("GetPlanListWithReverseResponse.Result.TotalCount")); List<DataListItem> dataList = new ArrayList<DataListItem>(); for (int i = 0; i < _ctx.lengthValue("GetPlanListWithReverseResponse.Result.DataList.Length"); i++) { DataListItem dataListItem = new DataListItem(); dataListItem.setAgreement(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Agreement")); dataListItem.setAppGroupId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AppGroupId")); dataListItem.setAppGroupName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AppGroupName")); dataListItem.setAssetReceiver(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AssetReceiver")); dataListItem.setAssetReceiverNick(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].AssetReceiverNick")); dataListItem.setAzone(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Azone")); dataListItem.setBenefitOld(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BenefitOld")); dataListItem.setBusiness(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Business")); dataListItem.setBusinessMode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BusinessMode")); dataListItem.setBusinessModeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BusinessModeName")); dataListItem.setBusinessName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].BusinessName")); dataListItem.setCbmDemander(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CbmDemander")); dataListItem.setClassZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ClassZoneCode")); dataListItem.setClassZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ClassZoneName")); dataListItem.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct1Name")); dataListItem.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct2Name")); dataListItem.setCloudDeployProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct3")); dataListItem.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CloudDeployProduct3Name")); dataListItem.setCmC(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmC")); dataListItem.setCmP(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmP")); dataListItem.setCmU(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmU")); dataListItem.setCmV(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CmV")); dataListItem.setCnt(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Cnt")); dataListItem.setComment(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Comment")); dataListItem.setCreator(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Creator")); dataListItem.setCreatorNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].CreatorNic")); dataListItem.setDeliveryAmount(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].DeliveryAmount")); dataListItem.setExpireDate(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ExpireDate")); dataListItem.setHighCnt(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].HighCnt")); dataListItem.setId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Id")); dataListItem.setInstall(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Install")); dataListItem.setInstallId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].InstallId")); dataListItem.setInstallName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].InstallName")); dataListItem.setLadingStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].LadingStatus")); dataListItem.setLogicZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].LogicZoneCode")); dataListItem.setLogicZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].LogicZoneName")); dataListItem.setMachineType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].MachineType")); dataListItem.setManufacturerBrand(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ManufacturerBrand")); dataListItem.setManufacturerBrandName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ManufacturerBrandName")); dataListItem.setModelLoad(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ModelLoad")); dataListItem.setMsg(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Msg")); dataListItem.setNakedDelivery(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].NakedDelivery")); dataListItem.setNetArch(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].NetArch")); dataListItem.setNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Nic")); dataListItem.setOrgKey(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OrgKey")); dataListItem.setOsId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OsId")); dataListItem.setOsName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OsName")); dataListItem.setOutId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].OutId")); dataListItem.setPickAmount(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].PickAmount")); dataListItem.setPlanType(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].PlanType")); dataListItem.setPriority(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Priority")); dataListItem.setProcessId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProcessId")); dataListItem.setProduct1(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product1")); dataListItem.setProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product1Name")); dataListItem.setProduct2(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product2")); dataListItem.setProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product2Name")); dataListItem.setProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product3")); dataListItem.setProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Product3Name")); dataListItem.setProjectCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectCode")); dataListItem.setProjectName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectName")); dataListItem.setProjectType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectType")); dataListItem.setProjectTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].ProjectTypeName")); dataListItem.setQuotaPlanId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].QuotaPlanId")); dataListItem.setRegion(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Region")); dataListItem.setRequireType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].RequireType")); dataListItem.setRequireTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].RequireTypeName")); dataListItem.setRoomCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].RoomCode")); dataListItem.setSafeYear(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SafeYear")); dataListItem.setSafeZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SafeZoneCode")); dataListItem.setSafeZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SafeZoneName")); dataListItem.setScenario(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Scenario")); dataListItem.setSource(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Source")); dataListItem.setStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Status")); dataListItem.setSubLine(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SubLine")); dataListItem.setSubLineName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SubLineName")); dataListItem.setSuccess(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Success")); dataListItem.setTime(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].Time")); List<SplitDataListItem> splitDataList = new ArrayList<SplitDataListItem>(); for (int j = 0; j < _ctx.lengthValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList.Length"); j++) { SplitDataListItem splitDataListItem = new SplitDataListItem(); splitDataListItem.setAddStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AddStatus")); splitDataListItem.setAppGroupId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AppGroupId")); splitDataListItem.setAppGroupName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AppGroupName")); splitDataListItem.setAssetReceiver(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AssetReceiver")); splitDataListItem.setAssetReceiverNick(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].AssetReceiverNick")); splitDataListItem.setAzone(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Azone")); splitDataListItem.setBenefitOld(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BenefitOld")); splitDataListItem.setBusiness(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Business")); splitDataListItem.setBusinessMode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BusinessMode")); splitDataListItem.setBusinessModeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BusinessModeName")); splitDataListItem.setBusinessName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].BusinessName")); splitDataListItem.setCbmDemander(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CbmDemander")); splitDataListItem.setClassZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ClassZoneCode")); splitDataListItem.setClassZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ClassZoneName")); splitDataListItem.setCloudDeployProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct1Name")); splitDataListItem.setCloudDeployProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct2Name")); splitDataListItem.setCloudDeployProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct3")); splitDataListItem.setCloudDeployProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CloudDeployProduct3Name")); splitDataListItem.setCmC(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmC")); splitDataListItem.setCmP(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmP")); splitDataListItem.setCmU(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmU")); splitDataListItem.setCmV(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CmV")); splitDataListItem.setCnt(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Cnt")); splitDataListItem.setComment(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Comment")); splitDataListItem.setCountry(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Country")); splitDataListItem.setCreator(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Creator")); splitDataListItem.setCreatorNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].CreatorNic")); splitDataListItem.setDcosStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].DcosStatus")); splitDataListItem.setDemandStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].DemandStatus")); splitDataListItem.setError(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Error")); splitDataListItem.setGmtCreate(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].GmtCreate")); splitDataListItem.setGmtModified(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].GmtModified")); splitDataListItem.setHighCnt(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].HighCnt")); splitDataListItem.setId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Id")); splitDataListItem.setInstall(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Install")); splitDataListItem.setInstallId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].InstallId")); splitDataListItem.setInstallName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].InstallName")); splitDataListItem.setLadingStatus(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].LadingStatus")); splitDataListItem.setLogicZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].LogicZoneCode")); splitDataListItem.setLogicZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].LogicZoneName")); splitDataListItem.setMachineType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].MachineType")); splitDataListItem.setManufacturerBrand(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ManufacturerBrand")); splitDataListItem.setManufacturerBrandName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ManufacturerBrandName")); splitDataListItem.setModelLoad(_ctx.integerValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ModelLoad")); splitDataListItem.setNakedDelivery(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].NakedDelivery")); splitDataListItem.setNetArch(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].NetArch")); splitDataListItem.setNewPlanId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].NewPlanId")); splitDataListItem.setNic(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Nic")); splitDataListItem.setOrg(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Org")); splitDataListItem.setOriginId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OriginId")); splitDataListItem.setOsId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OsId")); splitDataListItem.setOsName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OsName")); splitDataListItem.setOutId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].OutId")); splitDataListItem.setPlanChangeReason(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].PlanChangeReason")); splitDataListItem.setPlanType(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].PlanType")); splitDataListItem.setPriority(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Priority")); splitDataListItem.setProcessId(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProcessId")); splitDataListItem.setProduct1(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product1")); splitDataListItem.setProduct1Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product1Name")); splitDataListItem.setProduct2(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product2")); splitDataListItem.setProduct2Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product2Name")); splitDataListItem.setProduct3(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product3")); splitDataListItem.setProduct3Name(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Product3Name")); splitDataListItem.setProjectCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectCode")); splitDataListItem.setProjectName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectName")); splitDataListItem.setProjectType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectType")); splitDataListItem.setProjectTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ProjectTypeName")); splitDataListItem.setQuotaPlanId(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].QuotaPlanId")); splitDataListItem.setRegion(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Region")); splitDataListItem.setRequireType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].RequireType")); splitDataListItem.setRequireTypeName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].RequireTypeName")); splitDataListItem.setReverseStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ReverseStatus")); splitDataListItem.setReverseType(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ReverseType")); splitDataListItem.setRoomCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].RoomCode")); splitDataListItem.setSafeYear(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SafeYear")); splitDataListItem.setSafeZoneCode(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SafeZoneCode")); splitDataListItem.setSafeZoneName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SafeZoneName")); splitDataListItem.setScStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].ScStatus")); splitDataListItem.setScenario(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Scenario")); splitDataListItem.setStockStatus(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].StockStatus")); splitDataListItem.setSubLine(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SubLine")); splitDataListItem.setSubLineName(_ctx.stringValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].SubLineName")); splitDataListItem.setTime(_ctx.longValue("GetPlanListWithReverseResponse.Result.DataList["+ i +"].SplitDataList["+ j +"].Time")); splitDataList.add(splitDataListItem); } dataListItem.setSplitDataList(splitDataList); dataList.add(dataListItem); } result.setDataList(dataList); getPlanListWithReverseResponse.setResult(result); return getPlanListWithReverseResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetProjectTypeByCodeResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.GetProjectTypeByCodeResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetProjectTypeByCodeResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class GetProjectTypeByCodeResponseUnmarshaller { public static GetProjectTypeByCodeResponse unmarshall(GetProjectTypeByCodeResponse getProjectTypeByCodeResponse, UnmarshallerContext _ctx) { getProjectTypeByCodeResponse.setRequestId(_ctx.stringValue("GetProjectTypeByCodeResponse.RequestId")); getProjectTypeByCodeResponse.set_Class(_ctx.stringValue("GetProjectTypeByCodeResponse.Class")); getProjectTypeByCodeResponse.setErrorMessage(_ctx.stringValue("GetProjectTypeByCodeResponse.ErrorMessage")); getProjectTypeByCodeResponse.setSuccess(_ctx.booleanValue("GetProjectTypeByCodeResponse.Success")); getProjectTypeByCodeResponse.setResultCode(_ctx.stringValue("GetProjectTypeByCodeResponse.ResultCode")); Result result = new Result(); result.set_Class(_ctx.stringValue("GetProjectTypeByCodeResponse.Result.Class")); result.setId(_ctx.longValue("GetProjectTypeByCodeResponse.Result.Id")); result.setProjectType(_ctx.stringValue("GetProjectTypeByCodeResponse.Result.ProjectType")); result.setProjectTypeName(_ctx.stringValue("GetProjectTypeByCodeResponse.Result.ProjectTypeName")); getProjectTypeByCodeResponse.setResult(result); return getProjectTypeByCodeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetSecondaryProdByPrimaryProdResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetSecondaryProdByPrimaryProdResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetSecondaryProdByPrimaryProdResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetSecondaryProdByPrimaryProdResponseUnmarshaller { public static GetSecondaryProdByPrimaryProdResponse unmarshall(GetSecondaryProdByPrimaryProdResponse getSecondaryProdByPrimaryProdResponse, UnmarshallerContext _ctx) { getSecondaryProdByPrimaryProdResponse.setRequestId(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.RequestId")); getSecondaryProdByPrimaryProdResponse.set_Class(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Class")); getSecondaryProdByPrimaryProdResponse.setErrorMessage(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.ErrorMessage")); getSecondaryProdByPrimaryProdResponse.setSuccess(_ctx.booleanValue("GetSecondaryProdByPrimaryProdResponse.Success")); getSecondaryProdByPrimaryProdResponse.setResultCode(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("GetSecondaryProdByPrimaryProdResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAoneId(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].AoneId")); resultItem.setAoneName(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].AoneName")); resultItem.set_Class(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].Class")); resultItem.setProductClass(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductClass")); resultItem.setProductClassCN(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductClassCN")); resultItem.setProductCode(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductCode")); resultItem.setProductEnName(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductEnName")); resultItem.setProductLineCN(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductLineCN")); resultItem.setProductLineEN(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductLineEN")); resultItem.setProductName(_ctx.stringValue("GetSecondaryProdByPrimaryProdResponse.Result["+ i +"].ProductName")); result.add(resultItem); } getSecondaryProdByPrimaryProdResponse.setResult(result); return getSecondaryProdByPrimaryProdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetSolutionListResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandDeploy; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue.ServerDemandListItem; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ComboValue.WholeRackListItem.ServerDemandListItem6; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ExchangeValue; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ExchangeValue.ServerDemandListItem11; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.NetPackValue; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.NetPackValue.ItemListItem; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.PubNetAccessValue; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.PubNetAccessValue.ItemListItem2; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.RackValue; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.RackValue.ItemListItem9; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ServerDTO; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ServiceValue; import com.aliyuncs.brinekingdom.model.v20190627.GetSolutionListResponse.ResultItem.DemandItem.ServiceValue.ItemListItem4; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class GetSolutionListResponseUnmarshaller { public static GetSolutionListResponse unmarshall(GetSolutionListResponse getSolutionListResponse, UnmarshallerContext _ctx) { getSolutionListResponse.setRequestId(_ctx.stringValue("GetSolutionListResponse.RequestId")); getSolutionListResponse.setMessage(_ctx.stringValue("GetSolutionListResponse.Message")); getSolutionListResponse.setSuccess(_ctx.booleanValue("GetSolutionListResponse.Success")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("GetSolutionListResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAscriptionClassName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AscriptionClassName")); resultItem.setDeployProduct2Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct2Name")); resultItem.setDcsId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].DcsId")); resultItem.setDataError(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DataError")); resultItem.setItemType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ItemType")); resultItem.setUkUseId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].UkUseId")); resultItem.setMatchCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MatchCnt")); resultItem.setOrgName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].OrgName")); resultItem.setBusinessMode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BusinessMode")); resultItem.setBrandName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BrandName")); resultItem.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Item")); resultItem.setFactoryInstall(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].FactoryInstall")); resultItem.setRequireType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].RequireType")); resultItem.setModelLoad(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].ModelLoad")); resultItem.setServerAssignCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].ServerAssignCnt")); resultItem.setOsId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].OsId")); resultItem.setConsistentId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].ConsistentId")); resultItem.setLadingProcessQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].LadingProcessQty")); resultItem.setQuotaPlanId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].QuotaPlanId")); resultItem.setDeliveryType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeliveryType")); resultItem.setDataFlag(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].DataFlag")); resultItem.setProjectTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectTypeName")); resultItem.setStatus(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Status")); resultItem.setCbmOwner(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].CbmOwner")); resultItem.setProductType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProductType")); resultItem.setProduct3Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product3Name")); resultItem.setScenario(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Scenario")); resultItem.setNetworkArch(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].NetworkArch")); resultItem.setUid(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Uid")); resultItem.setGmtCreate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].GmtCreate")); resultItem.setScPlanIds(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ScPlanIds")); resultItem.setSupplyQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].SupplyQty")); resultItem.setId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].Id")); resultItem.setAssetReceiverNick(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AssetReceiverNick")); resultItem.setUseCapacityCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UseCapacityCnt")); resultItem.setOrders(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Orders")); resultItem.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product3")); resultItem.setProduct1(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product1")); resultItem.setProjectName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectName")); resultItem.setProduct2(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product2")); resultItem.setSourceId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SourceId")); resultItem.setProduct1Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product1Name")); resultItem.setMoveExecuteQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MoveExecuteQty")); resultItem.setUseL2PoolCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UseL2PoolCnt")); resultItem.setAscriptionClass(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AscriptionClass")); resultItem.setExpectTurnOverDateStr(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ExpectTurnOverDateStr")); resultItem.setDeployProduct1(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct1")); resultItem.setDcsSource(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DcsSource")); resultItem.setDeployProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct3")); resultItem.setDeployProduct2(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct2")); resultItem.setMoveQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MoveQty")); resultItem.setUsePoolMoveDetail(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].UsePoolMoveDetail")); resultItem.setLogicZone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].LogicZone")); resultItem.setSupplyArea(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SupplyArea")); resultItem.setManufacturingBrandCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ManufacturingBrandCode")); resultItem.setExecuteFlag(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].ExecuteFlag")); resultItem.setDemandClass(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandClass")); resultItem.setMoveDeliveredQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].MoveDeliveredQty")); resultItem.setTenantId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].TenantId")); resultItem.setDeployProduct3Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct3Name")); resultItem.setAutoExecute(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].AutoExecute")); resultItem.setDemandQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandQty")); resultItem.setBusinessType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BusinessType")); resultItem.setIdc(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Idc")); resultItem.setBrandCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BrandCode")); resultItem.setCreator(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Creator")); resultItem.setBrandId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].BrandId")); resultItem.setInstallName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].InstallName")); resultItem.setEvaluateStatus(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].EvaluateStatus")); resultItem.setManufacturingBrandId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].ManufacturingBrandId")); resultItem.setSafeYear(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SafeYear")); resultItem.setMoveOrders(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].MoveOrders")); resultItem.setSupplyLevel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SupplyLevel")); resultItem.setRequireTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].RequireTypeName")); resultItem.setConfigModel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ConfigModel")); resultItem.setUpdater(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Updater")); resultItem.setExpectTurnOverDate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].ExpectTurnOverDate")); resultItem.setSupplyType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SupplyType")); resultItem.setDeployProduct1Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DeployProduct1Name")); resultItem.setInstall(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].Install")); resultItem.setUseSupplyCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UseSupplyCnt")); resultItem.setAzone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Azone")); resultItem.setPurchaseCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].PurchaseCnt")); resultItem.setShiftMethod(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ShiftMethod")); resultItem.setBenefitOld(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].BenefitOld")); resultItem.setIndustryLine(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].IndustryLine")); resultItem.setPurchaseOrders(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].PurchaseOrders")); resultItem.setFcstId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].FcstId")); resultItem.setPriority(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Priority")); resultItem.setUsePlanCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePlanCnt")); resultItem.setRackAssignCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].RackAssignCnt")); resultItem.setAssignVersion(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AssignVersion")); resultItem.setFeatureStr(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].FeatureStr")); resultItem.setExecuteError(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ExecuteError")); resultItem.setAssetReceiver(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AssetReceiver")); resultItem.setUsePoolInPlaceCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePoolInPlaceCnt")); resultItem.setSectionRackStatus(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SectionRackStatus")); resultItem.setProjectType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectType")); resultItem.setRegion(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Region")); resultItem.setSectionRackAvailableDate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].SectionRackAvailableDate")); resultItem.setDcsSourceId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DcsSourceId")); resultItem.setOperator(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Operator")); resultItem.setClassZone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ClassZone")); resultItem.setOrg(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Org")); resultItem.setManualBrandName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ManualBrandName")); resultItem.setGmtModified(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].GmtModified")); resultItem.setClassZoneName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ClassZoneName")); resultItem.setReplenishUnit(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ReplenishUnit")); resultItem.setSource(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Source")); resultItem.setProduct2Name(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Product2Name")); resultItem.setExecuteQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].ExecuteQty")); resultItem.setUsePoolInPlaceDetail(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].UsePoolInPlaceDetail")); resultItem.setSupplyDeliveredQty(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].SupplyDeliveredQty")); resultItem.setFeatures(_ctx.mapValue("GetSolutionListResponse.Result["+ i +"].Features")); resultItem.setProjectCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].ProjectCode")); resultItem.setInstallId(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].InstallId")); resultItem.setSectionRackAssignCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].SectionRackAssignCnt")); resultItem.setUsePoolMoveCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePoolMoveCnt")); resultItem.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].AppGroup")); resultItem.setComments(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Comments")); resultItem.setUsePoolCnt(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].UsePoolCnt")); resultItem.setOsName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].OsName")); resultItem.setCluster(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].Cluster")); resultItem.setAbleExecute(_ctx.booleanValue("GetSolutionListResponse.Result["+ i +"].AbleExecute")); resultItem.setUsePoolDetail(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].UsePoolDetail")); resultItem.setBusinessTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].BusinessTypeName")); resultItem.setUseSupplyDate(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].UseSupplyDate")); resultItem.setPreExecuteRequest(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].PreExecuteRequest")); resultItem.setSafeZone(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].SafeZone")); List<String> rackInfo = new ArrayList<String>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].RackInfo.Length"); j++) { rackInfo.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].RackInfo["+ j +"]")); } resultItem.setRackInfo(rackInfo); DemandDeploy demandDeploy = new DemandDeploy(); demandDeploy.setNetArch(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.NetArch")); demandDeploy.setFrameworkClass(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.FrameworkClass")); demandDeploy.setDeployMode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployMode")); demandDeploy.setDeployLocation(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployLocation")); demandDeploy.setDeployArch(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployArch")); demandDeploy.setNodeType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.NodeType")); demandDeploy.setDeployLevel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployLevel")); demandDeploy.setBoxModel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.BoxModel")); demandDeploy.setPublicNetWorkExport(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.PublicNetWorkExport")); demandDeploy.setBoxUpLink(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.BoxUpLink")); demandDeploy.setDeployRole(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.DeployRole")); demandDeploy.setBoxDownLink(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandDeploy.BoxDownLink")); resultItem.setDemandDeploy(demandDeploy); DemandItem demandItem = new DemandItem(); demandItem.setDemandItemType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.DemandItemType")); ServerDTO serverDTO = new ServerDTO(); serverDTO.setConfig(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServerDTO.Config")); serverDTO.setModel(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServerDTO.Model")); serverDTO.setNic(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServerDTO.Nic")); demandItem.setServerDTO(serverDTO); NetPackValue netPackValue = new NetPackValue(); List<ItemListItem> itemList = new ArrayList<ItemListItem>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList.Length"); j++) { ItemListItem itemListItem = new ItemListItem(); itemListItem.setRole(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Role")); itemListItem.setDemandQty(_ctx.longValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].DemandQty")); itemListItem.setResourceType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].ResourceType")); itemListItem.setFramework(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Framework")); itemListItem.setRemark(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.NetPackValue.ItemList["+ j +"].Remark")); itemList.add(itemListItem); } netPackValue.setItemList(itemList); demandItem.setNetPackValue(netPackValue); PubNetAccessValue pubNetAccessValue = new PubNetAccessValue(); List<ItemListItem2> itemList1 = new ArrayList<ItemListItem2>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList.Length"); j++) { ItemListItem2 itemListItem2 = new ItemListItem2(); itemListItem2.setPrice(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Price")); itemListItem2.setBandwidth(_ctx.floatValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].Bandwidth")); itemListItem2.setAccessType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.PubNetAccessValue.ItemList["+ j +"].AccessType")); itemList1.add(itemListItem2); } pubNetAccessValue.setItemList1(itemList1); demandItem.setPubNetAccessValue(pubNetAccessValue); ServiceValue serviceValue = new ServiceValue(); List<ItemListItem4> itemList3 = new ArrayList<ItemListItem4>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList.Length"); j++) { ItemListItem4 itemListItem4 = new ItemListItem4(); itemListItem4.setServiceTypeName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceTypeName")); itemListItem4.setArea(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Area")); itemListItem4.setYear(_ctx.floatValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Year")); itemListItem4.setServiceType(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceType")); itemListItem4.setAmount(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Amount")); itemListItem4.setIdc(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Idc")); itemListItem4.setServiceItemName(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItemName")); itemListItem4.setCity(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].City")); itemListItem4.setServiceItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].ServiceItem")); itemListItem4.setRemark(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ServiceValue.ItemList["+ j +"].Remark")); itemList3.add(itemListItem4); } serviceValue.setItemList3(itemList3); demandItem.setServiceValue(serviceValue); ComboValue comboValue = new ComboValue(); comboValue.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.SkuId")); List<ServerDemandListItem> serverDemandList = new ArrayList<ServerDemandListItem>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList.Length"); j++) { ServerDemandListItem serverDemandListItem = new ServerDemandListItem(); serverDemandListItem.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Item")); serverDemandListItem.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Product3")); serverDemandListItem.setAgreedQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AgreedQuantity")); serverDemandListItem.setQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].Quantity")); serverDemandListItem.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SkuId")); serverDemandListItem.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].AppGroup")); List<String> snList = new ArrayList<String>(); for (int k = 0; k < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList.Length"); k++) { snList.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.ServerDemandList["+ j +"].SnList["+ k +"]")); } serverDemandListItem.setSnList(snList); serverDemandList.add(serverDemandListItem); } comboValue.setServerDemandList(serverDemandList); List<WholeRackListItem> wholeRackList = new ArrayList<WholeRackListItem>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList.Length"); j++) { WholeRackListItem wholeRackListItem = new WholeRackListItem(); wholeRackListItem.setOrder(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].Order")); wholeRackListItem.setRackPackage(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].RackPackage")); List<ServerDemandListItem6> serverDemandList5 = new ArrayList<ServerDemandListItem6>(); for (int k = 0; k < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList.Length"); k++) { ServerDemandListItem6 serverDemandListItem6 = new ServerDemandListItem6(); serverDemandListItem6.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Item")); serverDemandListItem6.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Product3")); serverDemandListItem6.setAgreedQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AgreedQuantity")); serverDemandListItem6.setQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].Quantity")); serverDemandListItem6.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SkuId")); serverDemandListItem6.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].AppGroup")); List<String> snList7 = new ArrayList<String>(); for (int l = 0; l < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList.Length"); l++) { snList7.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ComboValue.WholeRackList["+ j +"].ServerDemandList["+ k +"].SnList["+ l +"]")); } serverDemandListItem6.setSnList7(snList7); serverDemandList5.add(serverDemandListItem6); } wholeRackListItem.setServerDemandList5(serverDemandList5); wholeRackList.add(wholeRackListItem); } comboValue.setWholeRackList(wholeRackList); demandItem.setComboValue(comboValue); RackValue rackValue = new RackValue(); List<ItemListItem9> itemList8 = new ArrayList<ItemListItem9>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList.Length"); j++) { ItemListItem9 itemListItem9 = new ItemListItem9(); itemListItem9.setRackNum(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RackNum")); itemListItem9.setRoomCode(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].RoomCode")); itemListItem9.setPower(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].Power")); itemListItem9.setPowUtilizationRate(_ctx.floatValue("GetSolutionListResponse.Result["+ i +"].DemandItem.RackValue.ItemList["+ j +"].PowUtilizationRate")); itemList8.add(itemListItem9); } rackValue.setItemList8(itemList8); demandItem.setRackValue(rackValue); ExchangeValue exchangeValue = new ExchangeValue(); List<String> exchangeList = new ArrayList<String>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList.Length"); j++) { exchangeList.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ExchangeList["+ j +"]")); } exchangeValue.setExchangeList(exchangeList); List<ServerDemandListItem11> serverDemandList10 = new ArrayList<ServerDemandListItem11>(); for (int j = 0; j < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList.Length"); j++) { ServerDemandListItem11 serverDemandListItem11 = new ServerDemandListItem11(); serverDemandListItem11.setItem(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Item")); serverDemandListItem11.setProduct3(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Product3")); serverDemandListItem11.setAgreedQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AgreedQuantity")); serverDemandListItem11.setQuantity(_ctx.integerValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].Quantity")); serverDemandListItem11.setSkuId(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SkuId")); serverDemandListItem11.setAppGroup(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].AppGroup")); List<String> snList12 = new ArrayList<String>(); for (int k = 0; k < _ctx.lengthValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList.Length"); k++) { snList12.add(_ctx.stringValue("GetSolutionListResponse.Result["+ i +"].DemandItem.ExchangeValue.ServerDemandList["+ j +"].SnList["+ k +"]")); } serverDemandListItem11.setSnList12(snList12); serverDemandList10.add(serverDemandListItem11); } exchangeValue.setServerDemandList10(serverDemandList10); demandItem.setExchangeValue(exchangeValue); resultItem.setDemandItem(demandItem); result.add(resultItem); } getSolutionListResponse.setResult(result); return getSolutionListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/GetTertiaryProdBySecondaryProdResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.GetTertiaryProdBySecondaryProdResponse; import com.aliyuncs.brinekingdom.model.v20190627.GetTertiaryProdBySecondaryProdResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetTertiaryProdBySecondaryProdResponseUnmarshaller { public static GetTertiaryProdBySecondaryProdResponse unmarshall(GetTertiaryProdBySecondaryProdResponse getTertiaryProdBySecondaryProdResponse, UnmarshallerContext _ctx) { getTertiaryProdBySecondaryProdResponse.setRequestId(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.RequestId")); getTertiaryProdBySecondaryProdResponse.set_Class(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Class")); getTertiaryProdBySecondaryProdResponse.setErrorMessage(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.ErrorMessage")); getTertiaryProdBySecondaryProdResponse.setSuccess(_ctx.booleanValue("GetTertiaryProdBySecondaryProdResponse.Success")); getTertiaryProdBySecondaryProdResponse.setResultCode(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("GetTertiaryProdBySecondaryProdResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAoneId(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].AoneId")); resultItem.setAoneName(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].AoneName")); resultItem.set_Class(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].Class")); resultItem.setProductClass(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductClass")); resultItem.setProductClassCN(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductClassCN")); resultItem.setProductCode(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductCode")); resultItem.setProductEnName(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductEnName")); resultItem.setProductLineCN(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductLineCN")); resultItem.setProductLineEN(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductLineEN")); resultItem.setProductName(_ctx.stringValue("GetTertiaryProdBySecondaryProdResponse.Result["+ i +"].ProductName")); result.add(resultItem); } getTertiaryProdBySecondaryProdResponse.setResult(result); return getTertiaryProdBySecondaryProdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/ListAllZoneResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.ListAllZoneResponse; import com.aliyuncs.brinekingdom.model.v20190627.ListAllZoneResponse.区域; import com.aliyuncs.transform.UnmarshallerContext; public class ListAllZoneResponseUnmarshaller { public static ListAllZoneResponse unmarshall(ListAllZoneResponse listAllZoneResponse, UnmarshallerContext _ctx) { listAllZoneResponse.setErrorMessage(_ctx.stringValue("ListAllZoneResponse.ErrorMessage")); listAllZoneResponse.setResultCode(_ctx.stringValue("ListAllZoneResponse.ResultCode")); listAllZoneResponse.setSuccess(_ctx.booleanValue("ListAllZoneResponse.Success")); listAllZoneResponse.set_Class(_ctx.stringValue("ListAllZoneResponse.Class")); List<区域> result = new ArrayList<区域>(); for (int i = 0; i < _ctx.lengthValue("ListAllZoneResponse.Result.Length"); i++) { 区域 区域 = new 区域(); 区域.setKey(_ctx.stringValue("ListAllZoneResponse.Result["+ i +"].Key")); 区域.setValue(_ctx.stringValue("ListAllZoneResponse.Result["+ i +"].Value")); result.add(区域); } listAllZoneResponse.setResult(result); return listAllZoneResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/OpenClientsDemandServiceResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.OpenClientsDemandServiceResponse; import com.aliyuncs.transform.UnmarshallerContext; public class OpenClientsDemandServiceResponseUnmarshaller { public static OpenClientsDemandServiceResponse unmarshall(OpenClientsDemandServiceResponse openClientsDemandServiceResponse, UnmarshallerContext _ctx) { openClientsDemandServiceResponse.setRequestId(_ctx.stringValue("OpenClientsDemandServiceResponse.RequestId")); openClientsDemandServiceResponse.setSourceId(_ctx.stringValue("OpenClientsDemandServiceResponse.SourceId")); openClientsDemandServiceResponse.setErrorMsg(_ctx.stringValue("OpenClientsDemandServiceResponse.ErrorMsg")); openClientsDemandServiceResponse.setDemandId(_ctx.longValue("OpenClientsDemandServiceResponse.DemandId")); openClientsDemandServiceResponse.setSource(_ctx.stringValue("OpenClientsDemandServiceResponse.Source")); openClientsDemandServiceResponse.setResultCode(_ctx.stringValue("OpenClientsDemandServiceResponse.ResultCode")); openClientsDemandServiceResponse.setSuccess(_ctx.booleanValue("OpenClientsDemandServiceResponse.Success")); return openClientsDemandServiceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/PushFcstPlanSopResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.PushFcstPlanSopResponse; import com.aliyuncs.transform.UnmarshallerContext; public class PushFcstPlanSopResponseUnmarshaller { public static PushFcstPlanSopResponse unmarshall(PushFcstPlanSopResponse pushFcstPlanSopResponse, UnmarshallerContext _ctx) { pushFcstPlanSopResponse.setRequestId(_ctx.stringValue("PushFcstPlanSopResponse.RequestId")); pushFcstPlanSopResponse.setTraceId(_ctx.stringValue("PushFcstPlanSopResponse.TraceId")); pushFcstPlanSopResponse.setErrorMessage(_ctx.stringValue("PushFcstPlanSopResponse.ErrorMessage")); pushFcstPlanSopResponse.setResultCode(_ctx.stringValue("PushFcstPlanSopResponse.ResultCode")); pushFcstPlanSopResponse.setSuccess(_ctx.booleanValue("PushFcstPlanSopResponse.Success")); pushFcstPlanSopResponse.setResult(_ctx.longValue("PushFcstPlanSopResponse.Result")); return pushFcstPlanSopResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QueryAllOsResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.QueryAllOsResponse; import com.aliyuncs.brinekingdom.model.v20190627.QueryAllOsResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryAllOsResponseUnmarshaller { public static QueryAllOsResponse unmarshall(QueryAllOsResponse queryAllOsResponse, UnmarshallerContext _ctx) { queryAllOsResponse.setRequestId(_ctx.stringValue("QueryAllOsResponse.RequestId")); queryAllOsResponse.set_Class(_ctx.stringValue("QueryAllOsResponse.Class")); queryAllOsResponse.setErrorMessage(_ctx.stringValue("QueryAllOsResponse.ErrorMessage")); queryAllOsResponse.setSuccess(_ctx.booleanValue("QueryAllOsResponse.Success")); queryAllOsResponse.setResultCode(_ctx.stringValue("QueryAllOsResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("QueryAllOsResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setLabel(_ctx.stringValue("QueryAllOsResponse.Result["+ i +"].Label")); resultItem.setValue(_ctx.longValue("QueryAllOsResponse.Result["+ i +"].Value")); result.add(resultItem); } queryAllOsResponse.setResult(result); return queryAllOsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByCityCodeResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByCityCodeResponse; import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByCityCodeResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryAzoneByCityCodeResponseUnmarshaller { public static QueryAzoneByCityCodeResponse unmarshall(QueryAzoneByCityCodeResponse queryAzoneByCityCodeResponse, UnmarshallerContext _ctx) { queryAzoneByCityCodeResponse.setRequestId(_ctx.stringValue("QueryAzoneByCityCodeResponse.RequestId")); queryAzoneByCityCodeResponse.set_Class(_ctx.stringValue("QueryAzoneByCityCodeResponse.Class")); queryAzoneByCityCodeResponse.setErrorMessage(_ctx.stringValue("QueryAzoneByCityCodeResponse.ErrorMessage")); queryAzoneByCityCodeResponse.setSuccess(_ctx.booleanValue("QueryAzoneByCityCodeResponse.Success")); queryAzoneByCityCodeResponse.setResultCode(_ctx.stringValue("QueryAzoneByCityCodeResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("QueryAzoneByCityCodeResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAzAlias(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzAlias")); resultItem.setAzCnName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzCnName")); resultItem.setAzId(_ctx.longValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzId")); resultItem.setAzName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].AzName")); resultItem.setCityCnName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CityCnName")); resultItem.setCityEnName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CityEnName")); resultItem.set_Class(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].Class")); resultItem.setCnStatus(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CnStatus")); resultItem.setCreator(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].Creator")); resultItem.setCreatorNic(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].CreatorNic")); resultItem.setEnStatus(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].EnStatus")); resultItem.setLastUpdate(_ctx.longValue("QueryAzoneByCityCodeResponse.Result["+ i +"].LastUpdate")); resultItem.setModifier(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].Modifier")); resultItem.setModifierNic(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].ModifierNic")); resultItem.setRoomCode(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].RoomCode")); resultItem.setRoomName(_ctx.stringValue("QueryAzoneByCityCodeResponse.Result["+ i +"].RoomName")); result.add(resultItem); } queryAzoneByCityCodeResponse.setResult(result); return queryAzoneByCityCodeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QueryAzoneByNameResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByNameResponse; import com.aliyuncs.brinekingdom.model.v20190627.QueryAzoneByNameResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class QueryAzoneByNameResponseUnmarshaller { public static QueryAzoneByNameResponse unmarshall(QueryAzoneByNameResponse queryAzoneByNameResponse, UnmarshallerContext _ctx) { queryAzoneByNameResponse.setRequestId(_ctx.stringValue("QueryAzoneByNameResponse.RequestId")); queryAzoneByNameResponse.set_Class(_ctx.stringValue("QueryAzoneByNameResponse.Class")); queryAzoneByNameResponse.setErrorMessage(_ctx.stringValue("QueryAzoneByNameResponse.ErrorMessage")); queryAzoneByNameResponse.setSuccess(_ctx.booleanValue("QueryAzoneByNameResponse.Success")); queryAzoneByNameResponse.setResultCode(_ctx.stringValue("QueryAzoneByNameResponse.ResultCode")); Result result = new Result(); result.setAzAlias(_ctx.stringValue("QueryAzoneByNameResponse.Result.AzAlias")); result.setAzCnName(_ctx.stringValue("QueryAzoneByNameResponse.Result.AzCnName")); result.setAzId(_ctx.longValue("QueryAzoneByNameResponse.Result.AzId")); result.setAzName(_ctx.stringValue("QueryAzoneByNameResponse.Result.AzName")); result.setCityCnName(_ctx.stringValue("QueryAzoneByNameResponse.Result.CityCnName")); result.setCityEnName(_ctx.stringValue("QueryAzoneByNameResponse.Result.CityEnName")); result.set_Class(_ctx.stringValue("QueryAzoneByNameResponse.Result.Class")); result.setCnStatus(_ctx.stringValue("QueryAzoneByNameResponse.Result.CnStatus")); result.setCreator(_ctx.stringValue("QueryAzoneByNameResponse.Result.Creator")); result.setCreatorNic(_ctx.stringValue("QueryAzoneByNameResponse.Result.CreatorNic")); result.setEnStatus(_ctx.stringValue("QueryAzoneByNameResponse.Result.EnStatus")); result.setLastUpdate(_ctx.longValue("QueryAzoneByNameResponse.Result.LastUpdate")); result.setModifier(_ctx.stringValue("QueryAzoneByNameResponse.Result.Modifier")); result.setModifierNic(_ctx.stringValue("QueryAzoneByNameResponse.Result.ModifierNic")); result.setRoomCode(_ctx.stringValue("QueryAzoneByNameResponse.Result.RoomCode")); result.setRoomName(_ctx.stringValue("QueryAzoneByNameResponse.Result.RoomName")); queryAzoneByNameResponse.setResult(result); return queryAzoneByNameResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QueryCityResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.QueryCityResponse; import com.aliyuncs.brinekingdom.model.v20190627.QueryCityResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryCityResponseUnmarshaller { public static QueryCityResponse unmarshall(QueryCityResponse queryCityResponse, UnmarshallerContext _ctx) { queryCityResponse.setRequestId(_ctx.stringValue("QueryCityResponse.RequestId")); queryCityResponse.set_Class(_ctx.stringValue("QueryCityResponse.Class")); queryCityResponse.setErrorMessage(_ctx.stringValue("QueryCityResponse.ErrorMessage")); queryCityResponse.setSuccess(_ctx.booleanValue("QueryCityResponse.Success")); queryCityResponse.setResultCode(_ctx.stringValue("QueryCityResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("QueryCityResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setCityAlias(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityAlias")); resultItem.setCityCnName(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityCnName")); resultItem.setCityCode(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityCode")); resultItem.setCityEnName(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CityEnName")); resultItem.setCityId(_ctx.longValue("QueryCityResponse.Result["+ i +"].CityId")); resultItem.set_Class(_ctx.stringValue("QueryCityResponse.Result["+ i +"].Class")); resultItem.setCreator(_ctx.stringValue("QueryCityResponse.Result["+ i +"].Creator")); resultItem.setCreatorNic(_ctx.stringValue("QueryCityResponse.Result["+ i +"].CreatorNic")); resultItem.setLastUpdate(_ctx.longValue("QueryCityResponse.Result["+ i +"].LastUpdate")); resultItem.setModifier(_ctx.stringValue("QueryCityResponse.Result["+ i +"].Modifier")); resultItem.setModifierNic(_ctx.stringValue("QueryCityResponse.Result["+ i +"].ModifierNic")); result.add(resultItem); } queryCityResponse.setResult(result); return queryCityResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QueryProjectTypeResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.QueryProjectTypeResponse; import com.aliyuncs.brinekingdom.model.v20190627.QueryProjectTypeResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryProjectTypeResponseUnmarshaller { public static QueryProjectTypeResponse unmarshall(QueryProjectTypeResponse queryProjectTypeResponse, UnmarshallerContext _ctx) { queryProjectTypeResponse.setRequestId(_ctx.stringValue("QueryProjectTypeResponse.RequestId")); queryProjectTypeResponse.set_Class(_ctx.stringValue("QueryProjectTypeResponse.Class")); queryProjectTypeResponse.setErrorMessage(_ctx.stringValue("QueryProjectTypeResponse.ErrorMessage")); queryProjectTypeResponse.setSuccess(_ctx.booleanValue("QueryProjectTypeResponse.Success")); queryProjectTypeResponse.setResultCode(_ctx.stringValue("QueryProjectTypeResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("QueryProjectTypeResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.set_Class(_ctx.stringValue("QueryProjectTypeResponse.Result["+ i +"].Class")); resultItem.setId(_ctx.longValue("QueryProjectTypeResponse.Result["+ i +"].Id")); resultItem.setProjectType(_ctx.stringValue("QueryProjectTypeResponse.Result["+ i +"].ProjectType")); resultItem.setProjectTypeName(_ctx.stringValue("QueryProjectTypeResponse.Result["+ i +"].ProjectTypeName")); result.add(resultItem); } queryProjectTypeResponse.setResult(result); return queryProjectTypeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QueryQuotaPlanScheduleResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.QueryQuotaPlanScheduleResponse; import com.aliyuncs.brinekingdom.model.v20190627.QueryQuotaPlanScheduleResponse.ResultItem; import com.aliyuncs.brinekingdom.model.v20190627.QueryQuotaPlanScheduleResponse.ResultItem.LadingScheduleListItem; import com.aliyuncs.brinekingdom.model.v20190627.QueryQuotaPlanScheduleResponse.ResultItem.LadingScheduleListItem.ServerScheduleListItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryQuotaPlanScheduleResponseUnmarshaller { public static QueryQuotaPlanScheduleResponse unmarshall(QueryQuotaPlanScheduleResponse queryQuotaPlanScheduleResponse, UnmarshallerContext _ctx) { queryQuotaPlanScheduleResponse.setRequestId(_ctx.stringValue("QueryQuotaPlanScheduleResponse.RequestId")); queryQuotaPlanScheduleResponse.setResultCode(_ctx.stringValue("QueryQuotaPlanScheduleResponse.ResultCode")); queryQuotaPlanScheduleResponse.setErrorMessage(_ctx.stringValue("QueryQuotaPlanScheduleResponse.ErrorMessage")); queryQuotaPlanScheduleResponse.setSuccess(_ctx.booleanValue("QueryQuotaPlanScheduleResponse.Success")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("QueryQuotaPlanScheduleResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].Status")); resultItem.setCreatorNick(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].CreatorNick")); resultItem.setQuotaPlanId(_ctx.longValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].QuotaPlanId")); resultItem.setDeliveryDate(_ctx.longValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].DeliveryDate")); resultItem.setConfigModel(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].ConfigModel")); resultItem.setTenantName(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].TenantName")); resultItem.setCreatorWorkNo(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].CreatorWorkNo")); resultItem.setQuantity(_ctx.integerValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].Quantity")); resultItem.setProductCode(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].ProductCode")); List<LadingScheduleListItem> ladingScheduleList = new ArrayList<LadingScheduleListItem>(); for (int j = 0; j < _ctx.lengthValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList.Length"); j++) { LadingScheduleListItem ladingScheduleListItem = new LadingScheduleListItem(); ladingScheduleListItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].Status")); ladingScheduleListItem.setQuantity(_ctx.integerValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].Quantity")); ladingScheduleListItem.setDeliveryQuantity(_ctx.integerValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].DeliveryQuantity")); ladingScheduleListItem.setLadingId(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].LadingId")); List<ServerScheduleListItem> serverScheduleList = new ArrayList<ServerScheduleListItem>(); for (int k = 0; k < _ctx.lengthValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList.Length"); k++) { ServerScheduleListItem serverScheduleListItem = new ServerScheduleListItem(); serverScheduleListItem.setType(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].Type")); serverScheduleListItem.setSerialNumber(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].SerialNumber")); serverScheduleListItem.setStatus(_ctx.stringValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].Status")); serverScheduleListItem.setDelivery(_ctx.booleanValue("QueryQuotaPlanScheduleResponse.Result["+ i +"].LadingScheduleList["+ j +"].ServerScheduleList["+ k +"].Delivery")); serverScheduleList.add(serverScheduleListItem); } ladingScheduleListItem.setServerScheduleList(serverScheduleList); ladingScheduleList.add(ladingScheduleListItem); } resultItem.setLadingScheduleList(ladingScheduleList); result.add(resultItem); } queryQuotaPlanScheduleResponse.setResult(result); return queryQuotaPlanScheduleResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QuerySupplyAreaResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.QuerySupplyAreaResponse; import com.aliyuncs.brinekingdom.model.v20190627.QuerySupplyAreaResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class QuerySupplyAreaResponseUnmarshaller { public static QuerySupplyAreaResponse unmarshall(QuerySupplyAreaResponse querySupplyAreaResponse, UnmarshallerContext _ctx) { querySupplyAreaResponse.setRequestId(_ctx.stringValue("QuerySupplyAreaResponse.RequestId")); querySupplyAreaResponse.setMessage(_ctx.stringValue("QuerySupplyAreaResponse.Message")); querySupplyAreaResponse.setSuccess(_ctx.booleanValue("QuerySupplyAreaResponse.Success")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("QuerySupplyAreaResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setArea(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Area")); resultItem.set_Class(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Class")); resultItem.setCountry(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Country")); resultItem.setIdc(_ctx.stringValue("QuerySupplyAreaResponse.Result["+ i +"].Idc")); result.add(resultItem); } querySupplyAreaResponse.setResult(result); return querySupplyAreaResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/QueryTemplateResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.QueryTemplateResponse; import com.aliyuncs.brinekingdom.model.v20190627.QueryTemplateResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryTemplateResponseUnmarshaller { public static QueryTemplateResponse unmarshall(QueryTemplateResponse queryTemplateResponse, UnmarshallerContext _ctx) { queryTemplateResponse.setRequestId(_ctx.stringValue("QueryTemplateResponse.RequestId")); queryTemplateResponse.set_Class(_ctx.stringValue("QueryTemplateResponse.Class")); queryTemplateResponse.setErrorMessage(_ctx.stringValue("QueryTemplateResponse.ErrorMessage")); queryTemplateResponse.setSuccess(_ctx.booleanValue("QueryTemplateResponse.Success")); queryTemplateResponse.setResultCode(_ctx.stringValue("QueryTemplateResponse.ResultCode")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("QueryTemplateResponse.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setId(_ctx.longValue("QueryTemplateResponse.Result["+ i +"].Id")); resultItem.setName(_ctx.stringValue("QueryTemplateResponse.Result["+ i +"].Name")); result.add(resultItem); } queryTemplateResponse.setResult(result); return queryTemplateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/ReceiveResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.ReceiveResponse; import com.aliyuncs.brinekingdom.model.v20190627.ReceiveResponse.ConsistentDemandResponseList; import com.aliyuncs.transform.UnmarshallerContext; public class ReceiveResponseUnmarshaller { public static ReceiveResponse unmarshall(ReceiveResponse receiveResponse, UnmarshallerContext _ctx) { receiveResponse.setRequestId(_ctx.stringValue("ReceiveResponse.RequestId")); receiveResponse.setMessage(_ctx.stringValue("ReceiveResponse.Message")); receiveResponse.setSuccess(_ctx.booleanValue("ReceiveResponse.Success")); List<ConsistentDemandResponseList> result = new ArrayList<ConsistentDemandResponseList>(); for (int i = 0; i < _ctx.lengthValue("ReceiveResponse.Result.Length"); i++) { ConsistentDemandResponseList consistentDemandResponseList = new ConsistentDemandResponseList(); consistentDemandResponseList.setConsistentDemandId(_ctx.longValue("ReceiveResponse.Result["+ i +"].ConsistentDemandId")); consistentDemandResponseList.setErrorMsg(_ctx.stringValue("ReceiveResponse.Result["+ i +"].ErrorMsg")); consistentDemandResponseList.setSource(_ctx.stringValue("ReceiveResponse.Result["+ i +"].Source")); consistentDemandResponseList.setSourceId(_ctx.stringValue("ReceiveResponse.Result["+ i +"].SourceId")); consistentDemandResponseList.setSuccess(_ctx.booleanValue("ReceiveResponse.Result["+ i +"].Success")); result.add(consistentDemandResponseList); } receiveResponse.setResult(result); return receiveResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/RequestDemandReverseResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.RequestDemandReverseResponse; import com.aliyuncs.transform.UnmarshallerContext; public class RequestDemandReverseResponseUnmarshaller { public static RequestDemandReverseResponse unmarshall(RequestDemandReverseResponse requestDemandReverseResponse, UnmarshallerContext _ctx) { requestDemandReverseResponse.setRequestId(_ctx.stringValue("RequestDemandReverseResponse.RequestId")); requestDemandReverseResponse.setTraceId(_ctx.stringValue("RequestDemandReverseResponse.TraceId")); requestDemandReverseResponse.setErrorMessage(_ctx.stringValue("RequestDemandReverseResponse.ErrorMessage")); requestDemandReverseResponse.setResultCode(_ctx.stringValue("RequestDemandReverseResponse.ResultCode")); requestDemandReverseResponse.setSuccess(_ctx.booleanValue("RequestDemandReverseResponse.Success")); requestDemandReverseResponse.setResult(_ctx.booleanValue("RequestDemandReverseResponse.Result")); return requestDemandReverseResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/SubmitPlanningResultResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.SubmitPlanningResultResponse; import com.aliyuncs.transform.UnmarshallerContext; public class SubmitPlanningResultResponseUnmarshaller { public static SubmitPlanningResultResponse unmarshall(SubmitPlanningResultResponse submitPlanningResultResponse, UnmarshallerContext _ctx) { submitPlanningResultResponse.setRequestId(_ctx.stringValue("SubmitPlanningResultResponse.RequestId")); submitPlanningResultResponse.setCode(_ctx.stringValue("SubmitPlanningResultResponse.Code")); submitPlanningResultResponse.setMessage(_ctx.stringValue("SubmitPlanningResultResponse.Message")); submitPlanningResultResponse.setSuccess(_ctx.booleanValue("SubmitPlanningResultResponse.Success")); return submitPlanningResultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/TrackResponseUnmarshaller.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.brinekingdom.transform.v20190627; import java.util.ArrayList; import java.util.List; import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse; import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem; import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem.ProgressListItem; import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem.ProgressListItem.DeliveryInfoListItem; import com.aliyuncs.brinekingdom.model.v20190627.TrackResponse.DataListItem.ProgressListItem.FcstDeliveryListItem; import com.aliyuncs.transform.UnmarshallerContext; public class TrackResponseUnmarshaller { public static TrackResponse unmarshall(TrackResponse trackResponse, UnmarshallerContext _ctx) { trackResponse.setRequestId(_ctx.stringValue("TrackResponse.RequestId")); trackResponse.setMessage(_ctx.stringValue("TrackResponse.Message")); trackResponse.setSuccess(_ctx.booleanValue("TrackResponse.Success")); List<DataListItem> dataList = new ArrayList<DataListItem>(); for (int i = 0; i < _ctx.lengthValue("TrackResponse.DataList.Length"); i++) { DataListItem dataListItem = new DataListItem(); dataListItem.setMoveQty(_ctx.integerValue("TrackResponse.DataList["+ i +"].MoveQty")); dataListItem.setSourceId(_ctx.stringValue("TrackResponse.DataList["+ i +"].SourceId")); dataListItem.setDemandId(_ctx.longValue("TrackResponse.DataList["+ i +"].DemandId")); dataListItem.setSupplyQty(_ctx.integerValue("TrackResponse.DataList["+ i +"].SupplyQty")); dataListItem.setExpectDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ExpectDate")); dataListItem.setDemandStatus(_ctx.stringValue("TrackResponse.DataList["+ i +"].DemandStatus")); dataListItem.setSource(_ctx.stringValue("TrackResponse.DataList["+ i +"].Source")); List<ProgressListItem> progressList = new ArrayList<ProgressListItem>(); for (int j = 0; j < _ctx.lengthValue("TrackResponse.DataList["+ i +"].ProgressList.Length"); j++) { ProgressListItem progressListItem = new ProgressListItem(); progressListItem.setRealDeliveryDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].RealDeliveryDate")); progressListItem.setOrderErrorMsg(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].OrderErrorMsg")); progressListItem.setSlaDeliveryDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].SlaDeliveryDate")); progressListItem.setLadingCnt(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].LadingCnt")); progressListItem.setOrderNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].OrderNumber")); progressListItem.setExpectDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].ExpectDate")); progressListItem.setDealCnt(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DealCnt")); progressListItem.setDeliveryStatus(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryStatus")); progressListItem.setDeliveryCnt(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryCnt")); progressListItem.setRackStatus(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].RackStatus")); progressListItem.setDeliveryType(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryType")); List<FcstDeliveryListItem> fcstDeliveryList = new ArrayList<FcstDeliveryListItem>(); for (int k = 0; k < _ctx.lengthValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].FcstDeliveryList.Length"); k++) { FcstDeliveryListItem fcstDeliveryListItem = new FcstDeliveryListItem(); fcstDeliveryListItem.setFcstDeliveryDate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].FcstDeliveryList["+ k +"].FcstDeliveryDate")); fcstDeliveryListItem.setFcstDeliveryCnt(_ctx.integerValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].FcstDeliveryList["+ k +"].FcstDeliveryCnt")); fcstDeliveryList.add(fcstDeliveryListItem); } progressListItem.setFcstDeliveryList(fcstDeliveryList); List<DeliveryInfoListItem> deliveryInfoList = new ArrayList<DeliveryInfoListItem>(); for (int k = 0; k < _ctx.lengthValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList.Length"); k++) { DeliveryInfoListItem deliveryInfoListItem = new DeliveryInfoListItem(); deliveryInfoListItem.setDeviceSource(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].DeviceSource")); deliveryInfoListItem.setBrandCode(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].BrandCode")); deliveryInfoListItem.setOrderNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].OrderNumber")); deliveryInfoListItem.setCreator(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].Creator")); deliveryInfoListItem.setLadingOrderTime(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].LadingOrderTime")); deliveryInfoListItem.setTransferTypeDES(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferTypeDES")); deliveryInfoListItem.setSecurityDomain(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].SecurityDomain")); deliveryInfoListItem.setIdcName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].IdcName")); deliveryInfoListItem.setParentFactoryModelName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ParentFactoryModelName")); deliveryInfoListItem.setFinishTime(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].FinishTime")); deliveryInfoListItem.setReceiveType(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ReceiveType")); deliveryInfoListItem.setLoading(_ctx.integerValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].Loading")); deliveryInfoListItem.setLogicZone(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].LogicZone")); deliveryInfoListItem.setNetworkType(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].NetworkType")); deliveryInfoListItem.setLogicZoneName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].LogicZoneName")); deliveryInfoListItem.setTemplateName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TemplateName")); deliveryInfoListItem.setKeepData(_ctx.booleanValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].KeepData")); deliveryInfoListItem.setModelName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ModelName")); deliveryInfoListItem.setRoomName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].RoomName")); deliveryInfoListItem.setTransferNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferNumber")); deliveryInfoListItem.setBatchNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].BatchNumber")); deliveryInfoListItem.setPoNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].PoNumber")); deliveryInfoListItem.setOsName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].OsName")); deliveryInfoListItem.setErrorInfo(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ErrorInfo")); deliveryInfoListItem.setPrNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].PrNumber")); deliveryInfoListItem.setShipNumber(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ShipNumber")); deliveryInfoListItem.setInstallSwitch(_ctx.booleanValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].InstallSwitch")); deliveryInfoListItem.setBusinessLabel(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].BusinessLabel")); deliveryInfoListItem.setTransferType(_ctx.integerValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferType")); deliveryInfoListItem.setProgressStepEnum(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].ProgressStepEnum")); deliveryInfoListItem.setPreInputTime(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].PreInputTime")); deliveryInfoListItem.setGmtCreate(_ctx.longValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].GmtCreate")); deliveryInfoListItem.setTransferName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].TransferName")); deliveryInfoListItem.setSourceAppGroup(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].SourceAppGroup")); deliveryInfoListItem.setSourceIdcName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].SourceIdcName")); deliveryInfoListItem.setRackName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].RackName")); deliveryInfoListItem.setSn(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].Sn")); deliveryInfoListItem.setAppGroupName(_ctx.stringValue("TrackResponse.DataList["+ i +"].ProgressList["+ j +"].DeliveryInfoList["+ k +"].AppGroupName")); deliveryInfoList.add(deliveryInfoListItem); } progressListItem.setDeliveryInfoList(deliveryInfoList); progressList.add(progressListItem); } dataListItem.setProgressList(progressList); dataList.add(dataListItem); } trackResponse.setDataList(dataList); return trackResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform
java-sources/com/aliyun/aliyun-java-sdk-brinekingdom/1.0.8/com/aliyuncs/brinekingdom/transform/v20190627/WeeksSummaryQuotaResponseUnmarshaller.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.brinekingdom.transform.v20190627; import com.aliyuncs.brinekingdom.model.v20190627.WeeksSummaryQuotaResponse; import com.aliyuncs.brinekingdom.model.v20190627.WeeksSummaryQuotaResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class WeeksSummaryQuotaResponseUnmarshaller { public static WeeksSummaryQuotaResponse unmarshall(WeeksSummaryQuotaResponse weeksSummaryQuotaResponse, UnmarshallerContext _ctx) { weeksSummaryQuotaResponse.setMessage(_ctx.stringValue("WeeksSummaryQuotaResponse.Message")); weeksSummaryQuotaResponse.setSuccess(_ctx.booleanValue("WeeksSummaryQuotaResponse.Success")); Result result = new Result(); result.setExpectDate(_ctx.longValue("WeeksSummaryQuotaResponse.Result.ExpectDate")); result.setForecastTotal(_ctx.longValue("WeeksSummaryQuotaResponse.Result.ForecastTotal")); result.setModel(_ctx.stringValue("WeeksSummaryQuotaResponse.Result.Model")); result.setNic(_ctx.stringValue("WeeksSummaryQuotaResponse.Result.Nic")); result.setOrgName(_ctx.stringValue("WeeksSummaryQuotaResponse.Result.OrgName")); result.setPlannedAvailable(_ctx.longValue("WeeksSummaryQuotaResponse.Result.PlannedAvailable")); result.setReplenishable(_ctx.longValue("WeeksSummaryQuotaResponse.Result.Replenishable")); result.setSupplyCnt(_ctx.longValue("WeeksSummaryQuotaResponse.Result.SupplyCnt")); weeksSummaryQuotaResponse.setResult(result); return weeksSummaryQuotaResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/Endpoint.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.bssopenapi; import java.util.HashMap; public class Endpoint { public static HashMap<String, String> endpointMap = new HashMap<String, String>() { { put("cn-shanghai-internal-test-1", "business.aliyuncs.com"); put("cn-shenzhen-su18-b01", "business.aliyuncs.com"); put("cn-beijing", "business.aliyuncs.com"); put("cn-shanghai-inner", "business.aliyuncs.com"); put("cn-hangzhou-internal-prod-1", "business.aliyuncs.com"); put("cn-north-2-gov-1", "business.aliyuncs.com"); put("cn-yushanfang", "business.aliyuncs.com"); put("cn-qingdao-nebula", "business.aliyuncs.com"); put("cn-beijing-finance-pop", "business.aliyuncs.com"); put("cn-wuhan", "business.aliyuncs.com"); put("cn-zhangjiakou", "business.aliyuncs.com"); put("us-west-1", "business.ap-southeast-1.aliyuncs.com"); put("cn-zhangbei", "business.aliyuncs.com"); put("rus-west-1-pop", "business.ap-southeast-1.aliyuncs.com"); put("cn-shanghai-et15-b01", "business.aliyuncs.com"); put("cn-hangzhou-bj-b01", "business.aliyuncs.com"); put("cn-zhangbei-na61-b01", "business.aliyuncs.com"); put("ap-northeast-2", "business.ap-southeast-1.aliyuncs.com"); put("ap-northeast-1", "business.ap-southeast-1.aliyuncs.com"); put("cn-huhehaote-nebula-1", "business.aliyuncs.com"); put("cn-shanghai-et2-b01", "business.aliyuncs.com"); put("ap-southeast-1", "business.ap-southeast-1.aliyuncs.com"); put("ap-southeast-2", "business.ap-southeast-1.aliyuncs.com"); put("ap-southeast-3", "business.ap-southeast-1.aliyuncs.com"); put("ap-southeast-5", "business.ap-southeast-1.aliyuncs.com"); put("us-east-1", "business.ap-southeast-1.aliyuncs.com"); put("cn-shenzhen-inner", "business.aliyuncs.com"); put("cn-zhangjiakou-na62-a01", "business.aliyuncs.com"); put("cn-beijing-gov-1", "business.aliyuncs.com"); put("cn-wulanchabu", "business.aliyuncs.com"); put("ap-south-1", "business.ap-southeast-1.aliyuncs.com"); put("cn-shenzhen-st4-d01", "business.aliyuncs.com"); put("cn-haidian-cm12-c01", "business.aliyuncs.com"); put("cn-qingdao", "business.aliyuncs.com"); put("cn-hongkong-finance-pop", "business.aliyuncs.com"); put("cn-shanghai", "business.aliyuncs.com"); put("cn-shanghai-finance-1", "business.aliyuncs.com"); put("cn-hongkong", "business.aliyuncs.com"); put("eu-central-1", "business.ap-southeast-1.aliyuncs.com"); put("cn-shenzhen", "business.aliyuncs.com"); put("cn-zhengzhou-nebula-1", "business.aliyuncs.com"); put("eu-west-1", "business.ap-southeast-1.aliyuncs.com"); put("cn-hangzhou-internal-test-1", "business.aliyuncs.com"); put("eu-west-1-oxs", "business.ap-southeast-1.aliyuncs.com"); put("cn-beijing-finance-1", "business.aliyuncs.com"); put("cn-hangzhou-internal-test-3", "business.aliyuncs.com"); put("cn-hangzhou-internal-test-2", "business.aliyuncs.com"); put("cn-shenzhen-finance-1", "business.aliyuncs.com"); put("me-east-1", "business.ap-southeast-1.aliyuncs.com"); put("cn-chengdu", "business.aliyuncs.com"); put("cn-hangzhou-test-306", "business.aliyuncs.com"); put("cn-hangzhou-finance", "business.aliyuncs.com"); put("cn-beijing-nu16-b01", "business.aliyuncs.com"); put("cn-edge-1", "business.aliyuncs.com"); put("cn-huhehaote", "business.aliyuncs.com"); put("cn-fujian", "business.aliyuncs.com"); put("ap-northeast-2-pop", "business.ap-southeast-1.aliyuncs.com"); put("cn-hangzhou", "business.aliyuncs.com"); } }; public static String endpointRegionalType = "regional"; }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/AddAccountRelationRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class AddAccountRelationRequest extends RpcAcsRequest<AddAccountRelationResponse> { private String childNick; private String relationType; private Long parentUserId; private Long childUserId; private String requestId; private List<String> permissionCodess; private List<String> roleCodess; public AddAccountRelationRequest() { super("BssOpenApi", "2017-12-14", "AddAccountRelation", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getChildNick() { return this.childNick; } public void setChildNick(String childNick) { this.childNick = childNick; if(childNick != null){ putQueryParameter("ChildNick", childNick); } } public String getRelationType() { return this.relationType; } public void setRelationType(String relationType) { this.relationType = relationType; if(relationType != null){ putQueryParameter("RelationType", relationType); } } public Long getParentUserId() { return this.parentUserId; } public void setParentUserId(Long parentUserId) { this.parentUserId = parentUserId; if(parentUserId != null){ putQueryParameter("ParentUserId", parentUserId.toString()); } } public Long getChildUserId() { return this.childUserId; } public void setChildUserId(Long childUserId) { this.childUserId = childUserId; if(childUserId != null){ putQueryParameter("ChildUserId", childUserId.toString()); } } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; if(requestId != null){ putQueryParameter("RequestId", requestId); } } public List<String> getPermissionCodess() { return this.permissionCodess; } public void setPermissionCodess(List<String> permissionCodess) { this.permissionCodess = permissionCodess; if (permissionCodess != null) { for (int i = 0; i < permissionCodess.size(); i++) { putQueryParameter("PermissionCodes." + (i + 1) , permissionCodess.get(i)); } } } public List<String> getRoleCodess() { return this.roleCodess; } public void setRoleCodess(List<String> roleCodess) { this.roleCodess = roleCodess; if (roleCodess != null) { for (int i = 0; i < roleCodess.size(); i++) { putQueryParameter("RoleCodes." + (i + 1) , roleCodess.get(i)); } } } @Override public Class<AddAccountRelationResponse> getResponseClass() { return AddAccountRelationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/AddAccountRelationResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.AddAccountRelationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AddAccountRelationResponse extends AcsResponse { private String code; private String message; 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 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 String hostId; private Long relationId; public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } public Long getRelationId() { return this.relationId; } public void setRelationId(Long relationId) { this.relationId = relationId; } } @Override public AddAccountRelationResponse getInstance(UnmarshallerContext context) { return AddAccountRelationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/AllocateCostUnitResourceRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class AllocateCostUnitResourceRequest extends RpcAcsRequest<AllocateCostUnitResourceResponse> { private List<ResourceInstanceList> resourceInstanceLists; private Long fromUnitId; private Long toUnitId; private Long fromUnitUserId; private Long toUnitUserId; public AllocateCostUnitResourceRequest() { super("BssOpenApi", "2017-12-14", "AllocateCostUnitResource", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<ResourceInstanceList> getResourceInstanceLists() { return this.resourceInstanceLists; } public void setResourceInstanceLists(List<ResourceInstanceList> resourceInstanceLists) { this.resourceInstanceLists = resourceInstanceLists; if (resourceInstanceLists != null) { for (int depth1 = 0; depth1 < resourceInstanceLists.size(); depth1++) { putQueryParameter("ResourceInstanceList." + (depth1 + 1) + ".ResourceId" , resourceInstanceLists.get(depth1).getResourceId()); putQueryParameter("ResourceInstanceList." + (depth1 + 1) + ".CommodityCode" , resourceInstanceLists.get(depth1).getCommodityCode()); putQueryParameter("ResourceInstanceList." + (depth1 + 1) + ".ApportionCode" , resourceInstanceLists.get(depth1).getApportionCode()); putQueryParameter("ResourceInstanceList." + (depth1 + 1) + ".ResourceUserId" , resourceInstanceLists.get(depth1).getResourceUserId()); } } } public Long getFromUnitId() { return this.fromUnitId; } public void setFromUnitId(Long fromUnitId) { this.fromUnitId = fromUnitId; if(fromUnitId != null){ putQueryParameter("FromUnitId", fromUnitId.toString()); } } public Long getToUnitId() { return this.toUnitId; } public void setToUnitId(Long toUnitId) { this.toUnitId = toUnitId; if(toUnitId != null){ putQueryParameter("ToUnitId", toUnitId.toString()); } } public Long getFromUnitUserId() { return this.fromUnitUserId; } public void setFromUnitUserId(Long fromUnitUserId) { this.fromUnitUserId = fromUnitUserId; if(fromUnitUserId != null){ putQueryParameter("FromUnitUserId", fromUnitUserId.toString()); } } public Long getToUnitUserId() { return this.toUnitUserId; } public void setToUnitUserId(Long toUnitUserId) { this.toUnitUserId = toUnitUserId; if(toUnitUserId != null){ putQueryParameter("ToUnitUserId", toUnitUserId.toString()); } } public static class ResourceInstanceList { private String resourceId; private String commodityCode; private String apportionCode; private Long resourceUserId; public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getApportionCode() { return this.apportionCode; } public void setApportionCode(String apportionCode) { this.apportionCode = apportionCode; } public Long getResourceUserId() { return this.resourceUserId; } public void setResourceUserId(Long resourceUserId) { this.resourceUserId = resourceUserId; } } @Override public Class<AllocateCostUnitResourceResponse> getResponseClass() { return AllocateCostUnitResourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/AllocateCostUnitResourceResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.AllocateCostUnitResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AllocateCostUnitResourceResponse extends AcsResponse { private String code; private String message; 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 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 Long toUnitUserId; private Boolean isSuccess; private Long toUnitId; public Long getToUnitUserId() { return this.toUnitUserId; } public void setToUnitUserId(Long toUnitUserId) { this.toUnitUserId = toUnitUserId; } public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public Long getToUnitId() { return this.toUnitId; } public void setToUnitId(Long toUnitId) { this.toUnitId = toUnitId; } } @Override public AllocateCostUnitResourceResponse getInstance(UnmarshallerContext context) { return AllocateCostUnitResourceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ApplyInvoiceRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class ApplyInvoiceRequest extends RpcAcsRequest<ApplyInvoiceResponse> { private Integer invoicingType; private Integer processWay; private Long ownerId; private Long invoiceAmount; private Long addressId; private String applyUserNick; private Boolean invoiceByAmount; private Long customerId; private List<Long> selectedIdss; private String userRemark; public ApplyInvoiceRequest() { super("BssOpenApi", "2017-12-14", "ApplyInvoice", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getInvoicingType() { return this.invoicingType; } public void setInvoicingType(Integer invoicingType) { this.invoicingType = invoicingType; if(invoicingType != null){ putQueryParameter("InvoicingType", invoicingType.toString()); } } public Integer getProcessWay() { return this.processWay; } public void setProcessWay(Integer processWay) { this.processWay = processWay; if(processWay != null){ putQueryParameter("ProcessWay", processWay.toString()); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public Long getInvoiceAmount() { return this.invoiceAmount; } public void setInvoiceAmount(Long invoiceAmount) { this.invoiceAmount = invoiceAmount; if(invoiceAmount != null){ putQueryParameter("InvoiceAmount", invoiceAmount.toString()); } } public Long getAddressId() { return this.addressId; } public void setAddressId(Long addressId) { this.addressId = addressId; if(addressId != null){ putQueryParameter("AddressId", addressId.toString()); } } public String getApplyUserNick() { return this.applyUserNick; } public void setApplyUserNick(String applyUserNick) { this.applyUserNick = applyUserNick; if(applyUserNick != null){ putQueryParameter("ApplyUserNick", applyUserNick); } } public Boolean getInvoiceByAmount() { return this.invoiceByAmount; } public void setInvoiceByAmount(Boolean invoiceByAmount) { this.invoiceByAmount = invoiceByAmount; if(invoiceByAmount != null){ putQueryParameter("InvoiceByAmount", invoiceByAmount.toString()); } } public Long getCustomerId() { return this.customerId; } public void setCustomerId(Long customerId) { this.customerId = customerId; if(customerId != null){ putQueryParameter("CustomerId", customerId.toString()); } } public List<Long> getSelectedIdss() { return this.selectedIdss; } public void setSelectedIdss(List<Long> selectedIdss) { this.selectedIdss = selectedIdss; if (selectedIdss != null) { for (int i = 0; i < selectedIdss.size(); i++) { putQueryParameter("SelectedIds." + (i + 1) , selectedIdss.get(i)); } } } public String getUserRemark() { return this.userRemark; } public void setUserRemark(String userRemark) { this.userRemark = userRemark; if(userRemark != null){ putQueryParameter("UserRemark", userRemark); } } @Override public Class<ApplyInvoiceResponse> getResponseClass() { return ApplyInvoiceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ApplyInvoiceResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.ApplyInvoiceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ApplyInvoiceResponse extends AcsResponse { private String code; private String message; 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 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 Long invoiceApplyId; public Long getInvoiceApplyId() { return this.invoiceApplyId; } public void setInvoiceApplyId(Long invoiceApplyId) { this.invoiceApplyId = invoiceApplyId; } } @Override public ApplyInvoiceResponse getInstance(UnmarshallerContext context) { return ApplyInvoiceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CancelOrderRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class CancelOrderRequest extends RpcAcsRequest<CancelOrderResponse> { private String orderId; private Long ownerId; public CancelOrderRequest() { super("BssOpenApi", "2017-12-14", "CancelOrder", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; if(orderId != null){ putQueryParameter("OrderId", orderId); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } @Override public Class<CancelOrderResponse> getResponseClass() { return CancelOrderResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CancelOrderResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.CancelOrderResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CancelOrderResponse extends AcsResponse { private String code; private String message; 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 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 String hostId; public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } } @Override public CancelOrderResponse getInstance(UnmarshallerContext context) { return CancelOrderResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ChangeResellerConsumeAmountRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class ChangeResellerConsumeAmountRequest extends RpcAcsRequest<ChangeResellerConsumeAmountResponse> { private String amount; private String outBizId; private String source; private Long ownerId; private String businessType; private String adjustType; private String extendMap; private String currency; public ChangeResellerConsumeAmountRequest() { super("BssOpenApi", "2017-12-14", "ChangeResellerConsumeAmount", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAmount() { return this.amount; } public void setAmount(String amount) { this.amount = amount; if(amount != null){ putQueryParameter("Amount", amount); } } public String getOutBizId() { return this.outBizId; } public void setOutBizId(String outBizId) { this.outBizId = outBizId; if(outBizId != null){ putQueryParameter("OutBizId", outBizId); } } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; if(source != null){ putQueryParameter("Source", source); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getBusinessType() { return this.businessType; } public void setBusinessType(String businessType) { this.businessType = businessType; if(businessType != null){ putQueryParameter("BusinessType", businessType); } } public String getAdjustType() { return this.adjustType; } public void setAdjustType(String adjustType) { this.adjustType = adjustType; if(adjustType != null){ putQueryParameter("AdjustType", adjustType); } } public String getExtendMap() { return this.extendMap; } public void setExtendMap(String extendMap) { this.extendMap = extendMap; if(extendMap != null){ putQueryParameter("ExtendMap", extendMap); } } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; if(currency != null){ putQueryParameter("Currency", currency); } } @Override public Class<ChangeResellerConsumeAmountResponse> getResponseClass() { return ChangeResellerConsumeAmountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ChangeResellerConsumeAmountResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.ChangeResellerConsumeAmountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ChangeResellerConsumeAmountResponse extends AcsResponse { private String code; private String message; private String data; private String requestId; private Boolean 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 getData() { return this.data; } public void setData(String data) { this.data = data; } 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; } @Override public ChangeResellerConsumeAmountResponse getInstance(UnmarshallerContext context) { return ChangeResellerConsumeAmountResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ConfirmRelationRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class ConfirmRelationRequest extends RpcAcsRequest<ConfirmRelationResponse> { private String relationType; private Long parentUserId; private String confirmCode; private Long childUserId; private String requestId; private List<String> permissionCodess; private Long relationId; public ConfirmRelationRequest() { super("BssOpenApi", "2017-12-14", "ConfirmRelation", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRelationType() { return this.relationType; } public void setRelationType(String relationType) { this.relationType = relationType; if(relationType != null){ putQueryParameter("RelationType", relationType); } } public Long getParentUserId() { return this.parentUserId; } public void setParentUserId(Long parentUserId) { this.parentUserId = parentUserId; if(parentUserId != null){ putQueryParameter("ParentUserId", parentUserId.toString()); } } public String getConfirmCode() { return this.confirmCode; } public void setConfirmCode(String confirmCode) { this.confirmCode = confirmCode; if(confirmCode != null){ putQueryParameter("ConfirmCode", confirmCode); } } public Long getChildUserId() { return this.childUserId; } public void setChildUserId(Long childUserId) { this.childUserId = childUserId; if(childUserId != null){ putQueryParameter("ChildUserId", childUserId.toString()); } } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; if(requestId != null){ putQueryParameter("RequestId", requestId); } } public List<String> getPermissionCodess() { return this.permissionCodess; } public void setPermissionCodess(List<String> permissionCodess) { this.permissionCodess = permissionCodess; if (permissionCodess != null) { for (int i = 0; i < permissionCodess.size(); i++) { putQueryParameter("PermissionCodes." + (i + 1) , permissionCodess.get(i)); } } } public Long getRelationId() { return this.relationId; } public void setRelationId(Long relationId) { this.relationId = relationId; if(relationId != null){ putQueryParameter("RelationId", relationId.toString()); } } @Override public Class<ConfirmRelationResponse> getResponseClass() { return ConfirmRelationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ConfirmRelationResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.ConfirmRelationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ConfirmRelationResponse extends AcsResponse { private String code; private String message; 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 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 String hostId; public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } } @Override public ConfirmRelationResponse getInstance(UnmarshallerContext context) { return ConfirmRelationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ConvertChargeTypeRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class ConvertChargeTypeRequest extends RpcAcsRequest<ConvertChargeTypeResponse> { private Integer period; private String productCode; private String subscriptionType; private Long ownerId; private String productType; private String instanceId; public ConvertChargeTypeRequest() { super("BssOpenApi", "2017-12-14", "ConvertChargeType", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<ConvertChargeTypeResponse> getResponseClass() { return ConvertChargeTypeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/ConvertChargeTypeResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.ConvertChargeTypeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ConvertChargeTypeResponse extends AcsResponse { private String code; private String message; 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 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 String orderId; public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } } @Override public ConvertChargeTypeResponse getInstance(UnmarshallerContext context) { return ConvertChargeTypeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateAgAccountRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class CreateAgAccountRequest extends RpcAcsRequest<CreateAgAccountResponse> { private String firstName; private String cityName; private String postcode; private String enterpriseName; private String nationCode; private String lastName; private String loginEmail; private String provinceName; private String accountAttr; public CreateAgAccountRequest() { super("BssOpenApi", "2017-12-14", "CreateAgAccount", "bssopenapi"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getFirstName() { return this.firstName; } public void setFirstName(String firstName) { this.firstName = firstName; if(firstName != null){ putQueryParameter("FirstName", firstName); } } public String getCityName() { return this.cityName; } public void setCityName(String cityName) { this.cityName = cityName; if(cityName != null){ putQueryParameter("CityName", cityName); } } public String getPostcode() { return this.postcode; } public void setPostcode(String postcode) { this.postcode = postcode; if(postcode != null){ putQueryParameter("Postcode", postcode); } } public String getEnterpriseName() { return this.enterpriseName; } public void setEnterpriseName(String enterpriseName) { this.enterpriseName = enterpriseName; if(enterpriseName != null){ putQueryParameter("EnterpriseName", enterpriseName); } } public String getNationCode() { return this.nationCode; } public void setNationCode(String nationCode) { this.nationCode = nationCode; if(nationCode != null){ putQueryParameter("NationCode", nationCode); } } public String getLastName() { return this.lastName; } public void setLastName(String lastName) { this.lastName = lastName; if(lastName != null){ putQueryParameter("LastName", lastName); } } public String getLoginEmail() { return this.loginEmail; } public void setLoginEmail(String loginEmail) { this.loginEmail = loginEmail; if(loginEmail != null){ putQueryParameter("LoginEmail", loginEmail); } } public String getProvinceName() { return this.provinceName; } public void setProvinceName(String provinceName) { this.provinceName = provinceName; if(provinceName != null){ putQueryParameter("ProvinceName", provinceName); } } public String getAccountAttr() { return this.accountAttr; } public void setAccountAttr(String accountAttr) { this.accountAttr = accountAttr; if(accountAttr != null){ putQueryParameter("AccountAttr", accountAttr); } } @Override public Class<CreateAgAccountResponse> getResponseClass() { return CreateAgAccountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateAgAccountResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.CreateAgAccountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAgAccountResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private AgRelationDto agRelationDto; 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 Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public AgRelationDto getAgRelationDto() { return this.agRelationDto; } public void setAgRelationDto(AgRelationDto agRelationDto) { this.agRelationDto = agRelationDto; } public static class AgRelationDto { private String type; private String pk; private String ramAdminRoleName; private String mpk; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getPk() { return this.pk; } public void setPk(String pk) { this.pk = pk; } public String getRamAdminRoleName() { return this.ramAdminRoleName; } public void setRamAdminRoleName(String ramAdminRoleName) { this.ramAdminRoleName = ramAdminRoleName; } public String getMpk() { return this.mpk; } public void setMpk(String mpk) { this.mpk = mpk; } } @Override public CreateAgAccountResponse getInstance(UnmarshallerContext context) { return CreateAgAccountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateCostUnitRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class CreateCostUnitRequest extends RpcAcsRequest<CreateCostUnitResponse> { private List<UnitEntityList> unitEntityLists; public CreateCostUnitRequest() { super("BssOpenApi", "2017-12-14", "CreateCostUnit", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<UnitEntityList> getUnitEntityLists() { return this.unitEntityLists; } public void setUnitEntityLists(List<UnitEntityList> unitEntityLists) { this.unitEntityLists = unitEntityLists; if (unitEntityLists != null) { for (int depth1 = 0; depth1 < unitEntityLists.size(); depth1++) { putQueryParameter("UnitEntityList." + (depth1 + 1) + ".UnitName" , unitEntityLists.get(depth1).getUnitName()); putQueryParameter("UnitEntityList." + (depth1 + 1) + ".ParentUnitId" , unitEntityLists.get(depth1).getParentUnitId()); putQueryParameter("UnitEntityList." + (depth1 + 1) + ".OwnerUid" , unitEntityLists.get(depth1).getOwnerUid()); } } } public static class UnitEntityList { private String unitName; private Long parentUnitId; private Long ownerUid; public String getUnitName() { return this.unitName; } public void setUnitName(String unitName) { this.unitName = unitName; } public Long getParentUnitId() { return this.parentUnitId; } public void setParentUnitId(Long parentUnitId) { this.parentUnitId = parentUnitId; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } } @Override public Class<CreateCostUnitResponse> getResponseClass() { return CreateCostUnitResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateCostUnitResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.CreateCostUnitResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateCostUnitResponse extends AcsResponse { private String code; private String message; 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 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<CostUnitDtoListItem> costUnitDtoList; public List<CostUnitDtoListItem> getCostUnitDtoList() { return this.costUnitDtoList; } public void setCostUnitDtoList(List<CostUnitDtoListItem> costUnitDtoList) { this.costUnitDtoList = costUnitDtoList; } public static class CostUnitDtoListItem { private Long parentUnitId; private String unitName; private Long unitId; private Long ownerUid; public Long getParentUnitId() { return this.parentUnitId; } public void setParentUnitId(Long parentUnitId) { this.parentUnitId = parentUnitId; } public String getUnitName() { return this.unitName; } public void setUnitName(String unitName) { this.unitName = unitName; } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } } } @Override public CreateCostUnitResponse getInstance(UnmarshallerContext context) { return CreateCostUnitResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateInstanceRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class CreateInstanceRequest extends RpcAcsRequest<CreateInstanceResponse> { private String productCode; private Integer period; private String clientToken; private String subscriptionType; private String logistics; private Long ownerId; private String productType; private Integer renewPeriod; private String renewalStatus; private List<Parameter> parameters; public CreateInstanceRequest() { super("BssOpenApi", "2017-12-14", "CreateInstance", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public String getLogistics() { return this.logistics; } public void setLogistics(String logistics) { this.logistics = logistics; if(logistics != null){ putQueryParameter("Logistics", logistics); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Integer getRenewPeriod() { return this.renewPeriod; } public void setRenewPeriod(Integer renewPeriod) { this.renewPeriod = renewPeriod; if(renewPeriod != null){ putQueryParameter("RenewPeriod", renewPeriod.toString()); } } public String getRenewalStatus() { return this.renewalStatus; } public void setRenewalStatus(String renewalStatus) { this.renewalStatus = renewalStatus; if(renewalStatus != null){ putQueryParameter("RenewalStatus", renewalStatus); } } public List<Parameter> getParameters() { return this.parameters; } public void setParameters(List<Parameter> parameters) { this.parameters = parameters; if (parameters != null) { for (int depth1 = 0; depth1 < parameters.size(); depth1++) { putQueryParameter("Parameter." + (depth1 + 1) + ".Code" , parameters.get(depth1).getCode()); putQueryParameter("Parameter." + (depth1 + 1) + ".Value" , parameters.get(depth1).getValue()); } } } public static class Parameter { private String code; private String value; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } @Override public Class<CreateInstanceResponse> getResponseClass() { return CreateInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateInstanceResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.CreateInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateInstanceResponse extends AcsResponse { private String code; private String message; 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 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 String orderId; private String instanceId; public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } } @Override public CreateInstanceResponse getInstance(UnmarshallerContext context) { return CreateInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateResellerUserQuotaRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class CreateResellerUserQuotaRequest extends RpcAcsRequest<CreateResellerUserQuotaResponse> { private String amount; private String outBizId; private Long ownerId; private String currency; public CreateResellerUserQuotaRequest() { super("BssOpenApi", "2017-12-14", "CreateResellerUserQuota", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAmount() { return this.amount; } public void setAmount(String amount) { this.amount = amount; if(amount != null){ putQueryParameter("Amount", amount); } } public String getOutBizId() { return this.outBizId; } public void setOutBizId(String outBizId) { this.outBizId = outBizId; if(outBizId != null){ putQueryParameter("OutBizId", outBizId); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; if(currency != null){ putQueryParameter("Currency", currency); } } @Override public Class<CreateResellerUserQuotaResponse> getResponseClass() { return CreateResellerUserQuotaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateResellerUserQuotaResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.CreateResellerUserQuotaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateResellerUserQuotaResponse extends AcsResponse { private String code; private String message; private Boolean data; private String requestId; private Boolean 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 Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } 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; } @Override public CreateResellerUserQuotaResponse getInstance(UnmarshallerContext context) { return CreateResellerUserQuotaResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateResourcePackageRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class CreateResourcePackageRequest extends RpcAcsRequest<CreateResourcePackageResponse> { private String productCode; private String specification; private Long ownerId; private String effectiveDate; private Integer duration; private String packageType; private String pricingCycle; public CreateResourcePackageRequest() { super("BssOpenApi", "2017-12-14", "CreateResourcePackage", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSpecification() { return this.specification; } public void setSpecification(String specification) { this.specification = specification; if(specification != null){ putQueryParameter("Specification", specification); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getEffectiveDate() { return this.effectiveDate; } public void setEffectiveDate(String effectiveDate) { this.effectiveDate = effectiveDate; if(effectiveDate != null){ putQueryParameter("EffectiveDate", effectiveDate); } } public Integer getDuration() { return this.duration; } public void setDuration(Integer duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration.toString()); } } public String getPackageType() { return this.packageType; } public void setPackageType(String packageType) { this.packageType = packageType; if(packageType != null){ putQueryParameter("PackageType", packageType); } } public String getPricingCycle() { return this.pricingCycle; } public void setPricingCycle(String pricingCycle) { this.pricingCycle = pricingCycle; if(pricingCycle != null){ putQueryParameter("PricingCycle", pricingCycle); } } @Override public Class<CreateResourcePackageResponse> getResponseClass() { return CreateResourcePackageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateResourcePackageResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.CreateResourcePackageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateResourcePackageResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Long orderId; 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 Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Long getOrderId() { return this.orderId; } public void setOrderId(Long orderId) { this.orderId = orderId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long orderId; private String instanceId; public Long getOrderId() { return this.orderId; } public void setOrderId(Long orderId) { this.orderId = orderId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } } @Override public CreateResourcePackageResponse getInstance(UnmarshallerContext context) { return CreateResourcePackageResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateSavingsPlansInstanceRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.Map; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class CreateSavingsPlansInstanceRequest extends RpcAcsRequest<CreateSavingsPlansInstanceResponse> { private String specification; private String poolValue; private String commodityCode; private String type; private String effectiveDate; private String duration; private String specType; @SerializedName("extendMap") private Map<String,String> extendMap; private String payMode; private String region; private String pricingCycle; public CreateSavingsPlansInstanceRequest() { super("BssOpenApi", "2017-12-14", "CreateSavingsPlansInstance", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getSpecification() { return this.specification; } public void setSpecification(String specification) { this.specification = specification; if(specification != null){ putQueryParameter("Specification", specification); } } public String getPoolValue() { return this.poolValue; } public void setPoolValue(String poolValue) { this.poolValue = poolValue; if(poolValue != null){ putQueryParameter("PoolValue", poolValue); } } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; if(commodityCode != null){ putQueryParameter("CommodityCode", commodityCode); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getEffectiveDate() { return this.effectiveDate; } public void setEffectiveDate(String effectiveDate) { this.effectiveDate = effectiveDate; if(effectiveDate != null){ putQueryParameter("EffectiveDate", effectiveDate); } } public String getDuration() { return this.duration; } public void setDuration(String duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration); } } public String getSpecType() { return this.specType; } public void setSpecType(String specType) { this.specType = specType; if(specType != null){ putQueryParameter("SpecType", specType); } } public Map<String,String> getExtendMap() { return this.extendMap; } public void setExtendMap(Map<String,String> extendMap) { this.extendMap = extendMap; if (extendMap != null) { putQueryParameter("ExtendMap" , new Gson().toJson(extendMap)); } } public String getPayMode() { return this.payMode; } public void setPayMode(String payMode) { this.payMode = payMode; if(payMode != null){ putQueryParameter("PayMode", payMode); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } public String getPricingCycle() { return this.pricingCycle; } public void setPricingCycle(String pricingCycle) { this.pricingCycle = pricingCycle; if(pricingCycle != null){ putQueryParameter("PricingCycle", pricingCycle); } } @Override public Class<CreateSavingsPlansInstanceResponse> getResponseClass() { return CreateSavingsPlansInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/CreateSavingsPlansInstanceResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.CreateSavingsPlansInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateSavingsPlansInstanceResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private 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; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Long orderId; public Long getOrderId() { return this.orderId; } public void setOrderId(Long orderId) { this.orderId = orderId; } } @Override public CreateSavingsPlansInstanceResponse getInstance(UnmarshallerContext context) { return CreateSavingsPlansInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DeleteCostUnitRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DeleteCostUnitRequest extends RpcAcsRequest<DeleteCostUnitResponse> { private Long unitId; private Long ownerUid; public DeleteCostUnitRequest() { super("BssOpenApi", "2017-12-14", "DeleteCostUnit", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; if(unitId != null){ putQueryParameter("UnitId", unitId.toString()); } } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; if(ownerUid != null){ putQueryParameter("OwnerUid", ownerUid.toString()); } } @Override public Class<DeleteCostUnitResponse> getResponseClass() { return DeleteCostUnitResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DeleteCostUnitResponse.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.bssopenapi.model.v20171214; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DeleteCostUnitResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteCostUnitResponse extends AcsResponse { private String code; private String message; 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 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 Boolean isSuccess; private Long unitId; private Long ownerUid; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public Long getUnitId() { return this.unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } } @Override public DeleteCostUnitResponse getInstance(UnmarshallerContext context) { return DeleteCostUnitResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeCostBudgetsSummaryRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeCostBudgetsSummaryRequest extends RpcAcsRequest<DescribeCostBudgetsSummaryResponse> { private String budgetStatus; private String budgetType; private String nextToken; private Integer maxResults; private String budgetName; public DescribeCostBudgetsSummaryRequest() { super("BssOpenApi", "2017-12-14", "DescribeCostBudgetsSummary", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getBudgetStatus() { return this.budgetStatus; } public void setBudgetStatus(String budgetStatus) { this.budgetStatus = budgetStatus; if(budgetStatus != null){ putQueryParameter("BudgetStatus", budgetStatus); } } public String getBudgetType() { return this.budgetType; } public void setBudgetType(String budgetType) { this.budgetType = budgetType; if(budgetType != null){ putQueryParameter("BudgetType", budgetType); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } public String getBudgetName() { return this.budgetName; } public void setBudgetName(String budgetName) { this.budgetName = budgetName; if(budgetName != null){ putQueryParameter("BudgetName", budgetName); } } @Override public Class<DescribeCostBudgetsSummaryResponse> getResponseClass() { return DescribeCostBudgetsSummaryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeCostBudgetsSummaryResponse.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.bssopenapi.model.v20171214; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeCostBudgetsSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCostBudgetsSummaryResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Data data; 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 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private Integer maxResults; private Integer totalCount; private String hostId; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String budgetName; private String budgetStatus; private String budgetType; private Map<Object,Object> budget; private Map<Object,Object> calculatedValues; private Map<Object,Object> consumePeriod; public String getBudgetName() { return this.budgetName; } public void setBudgetName(String budgetName) { this.budgetName = budgetName; } public String getBudgetStatus() { return this.budgetStatus; } public void setBudgetStatus(String budgetStatus) { this.budgetStatus = budgetStatus; } public String getBudgetType() { return this.budgetType; } public void setBudgetType(String budgetType) { this.budgetType = budgetType; } public Map<Object,Object> getBudget() { return this.budget; } public void setBudget(Map<Object,Object> budget) { this.budget = budget; } public Map<Object,Object> getCalculatedValues() { return this.calculatedValues; } public void setCalculatedValues(Map<Object,Object> calculatedValues) { this.calculatedValues = calculatedValues; } public Map<Object,Object> getConsumePeriod() { return this.consumePeriod; } public void setConsumePeriod(Map<Object,Object> consumePeriod) { this.consumePeriod = consumePeriod; } } } @Override public DescribeCostBudgetsSummaryResponse getInstance(UnmarshallerContext context) { return DescribeCostBudgetsSummaryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceAmortizedCostByAmortizationPeriodDateRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeInstanceAmortizedCostByAmortizationPeriodDateRequest extends RpcAcsRequest<DescribeInstanceAmortizedCostByAmortizationPeriodDateResponse> { private String productCode; private String amortizationDateStart; private String subscriptionType; private String costUnitCode; private String nextToken; private List<String> billUserIdLists; private String productDetail; private List<String> billOwnerIdLists; private String billingCycle; private String amortizationDateEnd; private List<String> instanceIdLists; private Integer maxResults; public DescribeInstanceAmortizedCostByAmortizationPeriodDateRequest() { super("BssOpenApi", "2017-12-14", "DescribeInstanceAmortizedCostByAmortizationPeriodDate", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putBodyParameter("ProductCode", productCode); } } public String getAmortizationDateStart() { return this.amortizationDateStart; } public void setAmortizationDateStart(String amortizationDateStart) { this.amortizationDateStart = amortizationDateStart; if(amortizationDateStart != null){ putBodyParameter("AmortizationDateStart", amortizationDateStart); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putBodyParameter("SubscriptionType", subscriptionType); } } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; if(costUnitCode != null){ putBodyParameter("CostUnitCode", costUnitCode); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putBodyParameter("NextToken", nextToken); } } public List<String> getBillUserIdLists() { return this.billUserIdLists; } public void setBillUserIdLists(List<String> billUserIdLists) { this.billUserIdLists = billUserIdLists; if (billUserIdLists != null) { for (int i = 0; i < billUserIdLists.size(); i++) { putBodyParameter("BillUserIdList." + (i + 1) , billUserIdLists.get(i)); } } } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; if(productDetail != null){ putBodyParameter("ProductDetail", productDetail); } } public List<String> getBillOwnerIdLists() { return this.billOwnerIdLists; } public void setBillOwnerIdLists(List<String> billOwnerIdLists) { this.billOwnerIdLists = billOwnerIdLists; if (billOwnerIdLists != null) { for (int i = 0; i < billOwnerIdLists.size(); i++) { putBodyParameter("BillOwnerIdList." + (i + 1) , billOwnerIdLists.get(i)); } } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putBodyParameter("BillingCycle", billingCycle); } } public String getAmortizationDateEnd() { return this.amortizationDateEnd; } public void setAmortizationDateEnd(String amortizationDateEnd) { this.amortizationDateEnd = amortizationDateEnd; if(amortizationDateEnd != null){ putBodyParameter("AmortizationDateEnd", amortizationDateEnd); } } public List<String> getInstanceIdLists() { return this.instanceIdLists; } public void setInstanceIdLists(List<String> instanceIdLists) { this.instanceIdLists = instanceIdLists; if (instanceIdLists != null) { for (int i = 0; i < instanceIdLists.size(); i++) { putBodyParameter("InstanceIdList." + (i + 1) , instanceIdLists.get(i)); } } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putBodyParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeInstanceAmortizedCostByAmortizationPeriodDateResponse> getResponseClass() { return DescribeInstanceAmortizedCostByAmortizationPeriodDateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceAmortizedCostByAmortizationPeriodDateResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeInstanceAmortizedCostByAmortizationPeriodDateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeInstanceAmortizedCostByAmortizationPeriodDateResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Data data; 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 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private String accountID; private String accountName; private Integer maxResults; private Integer totalCount; private String hostId; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getHostId() { return this.hostId; } public void setHostId(String hostId) { this.hostId = hostId; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String costUnit; private String costUnitCode; private String instanceID; private String resourceGroup; private String tag; private String internetIP; private String intranetIP; private String region; private String zone; private String splitAccountName; private String splitProductDetail; private String splitItemID; private String splitItemName; private String consumePeriod; private String consumePeriodDay; private String amortizationStatus; private String amortizationPeriod; private String amortizationPeriodDay; private Long billAccountID; private String billAccountName; private Long billOwnerID; private String billOwnerName; private String productCode; private String productName; private String productDetailCode; private String productDetail; private String bizType; private String subscriptionType; private Double pretaxGrossAmount; private Double invoiceDiscount; private Double roundDownDiscount; private Double pretaxAmount; private Double deductedByCashCoupons; private Double deductedByCoupons; private Double deductedByPrepaidCard; private Double expenditureAmount; private Double previouslyAmortizedPretaxGrossAmount; private Double previouslyAmortizedInvoiceDiscount; private Double previouslyAmortizedRoundDownDiscount; private Double previouslyAmortizedPretaxAmount; private Double previouslyAmortizedDeductedByCashCoupons; private Double previouslyAmortizedDeductedByCoupons; private Double previouslyAmortizedDeductedByPrepaidCard; private Double previouslyAmortizedExpenditureAmount; private Double currentAmortizationPretaxGrossAmount; private Double currentAmortizationInvoiceDiscount; private Double currentAmortizationRoundDownDiscount; private Double currentAmortizationPretaxAmount; private Double currentAmortizationDeductedByCashCoupons; private Double currentAmortizationDeductedByCoupons; private Double currentAmortizationDeductedByPrepaidCard; private Double currentAmortizationExpenditureAmount; private Double remainingAmortizationPretaxGrossAmount; private Double remainingAmortizationInvoiceDiscount; private Double remainingAmortizationRoundDownDiscount; private Double remainingAmortizationPretaxAmount; private Double remainingAmortizationDeductedByCashCoupons; private Double remainingAmortizationDeductedByCoupons; private Double remainingAmortizationDeductedByPrepaidCard; private Double remainingAmortizationExpenditureAmount; public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getInternetIP() { return this.internetIP; } public void setInternetIP(String internetIP) { this.internetIP = internetIP; } public String getIntranetIP() { return this.intranetIP; } public void setIntranetIP(String intranetIP) { this.intranetIP = intranetIP; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getSplitAccountName() { return this.splitAccountName; } public void setSplitAccountName(String splitAccountName) { this.splitAccountName = splitAccountName; } public String getSplitProductDetail() { return this.splitProductDetail; } public void setSplitProductDetail(String splitProductDetail) { this.splitProductDetail = splitProductDetail; } public String getSplitItemID() { return this.splitItemID; } public void setSplitItemID(String splitItemID) { this.splitItemID = splitItemID; } public String getSplitItemName() { return this.splitItemName; } public void setSplitItemName(String splitItemName) { this.splitItemName = splitItemName; } public String getConsumePeriod() { return this.consumePeriod; } public void setConsumePeriod(String consumePeriod) { this.consumePeriod = consumePeriod; } public String getConsumePeriodDay() { return this.consumePeriodDay; } public void setConsumePeriodDay(String consumePeriodDay) { this.consumePeriodDay = consumePeriodDay; } public String getAmortizationStatus() { return this.amortizationStatus; } public void setAmortizationStatus(String amortizationStatus) { this.amortizationStatus = amortizationStatus; } public String getAmortizationPeriod() { return this.amortizationPeriod; } public void setAmortizationPeriod(String amortizationPeriod) { this.amortizationPeriod = amortizationPeriod; } public String getAmortizationPeriodDay() { return this.amortizationPeriodDay; } public void setAmortizationPeriodDay(String amortizationPeriodDay) { this.amortizationPeriodDay = amortizationPeriodDay; } public Long getBillAccountID() { return this.billAccountID; } public void setBillAccountID(Long billAccountID) { this.billAccountID = billAccountID; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public Long getBillOwnerID() { return this.billOwnerID; } public void setBillOwnerID(Long billOwnerID) { this.billOwnerID = billOwnerID; } public String getBillOwnerName() { return this.billOwnerName; } public void setBillOwnerName(String billOwnerName) { this.billOwnerName = billOwnerName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductDetailCode() { return this.productDetailCode; } public void setProductDetailCode(String productDetailCode) { this.productDetailCode = productDetailCode; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Double getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Double pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Double getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Double invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Double getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(Double roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public Double getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Double pretaxAmount) { this.pretaxAmount = pretaxAmount; } public Double getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Double deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public Double getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Double deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public Double getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Double deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public Double getExpenditureAmount() { return this.expenditureAmount; } public void setExpenditureAmount(Double expenditureAmount) { this.expenditureAmount = expenditureAmount; } public Double getPreviouslyAmortizedPretaxGrossAmount() { return this.previouslyAmortizedPretaxGrossAmount; } public void setPreviouslyAmortizedPretaxGrossAmount(Double previouslyAmortizedPretaxGrossAmount) { this.previouslyAmortizedPretaxGrossAmount = previouslyAmortizedPretaxGrossAmount; } public Double getPreviouslyAmortizedInvoiceDiscount() { return this.previouslyAmortizedInvoiceDiscount; } public void setPreviouslyAmortizedInvoiceDiscount(Double previouslyAmortizedInvoiceDiscount) { this.previouslyAmortizedInvoiceDiscount = previouslyAmortizedInvoiceDiscount; } public Double getPreviouslyAmortizedRoundDownDiscount() { return this.previouslyAmortizedRoundDownDiscount; } public void setPreviouslyAmortizedRoundDownDiscount(Double previouslyAmortizedRoundDownDiscount) { this.previouslyAmortizedRoundDownDiscount = previouslyAmortizedRoundDownDiscount; } public Double getPreviouslyAmortizedPretaxAmount() { return this.previouslyAmortizedPretaxAmount; } public void setPreviouslyAmortizedPretaxAmount(Double previouslyAmortizedPretaxAmount) { this.previouslyAmortizedPretaxAmount = previouslyAmortizedPretaxAmount; } public Double getPreviouslyAmortizedDeductedByCashCoupons() { return this.previouslyAmortizedDeductedByCashCoupons; } public void setPreviouslyAmortizedDeductedByCashCoupons(Double previouslyAmortizedDeductedByCashCoupons) { this.previouslyAmortizedDeductedByCashCoupons = previouslyAmortizedDeductedByCashCoupons; } public Double getPreviouslyAmortizedDeductedByCoupons() { return this.previouslyAmortizedDeductedByCoupons; } public void setPreviouslyAmortizedDeductedByCoupons(Double previouslyAmortizedDeductedByCoupons) { this.previouslyAmortizedDeductedByCoupons = previouslyAmortizedDeductedByCoupons; } public Double getPreviouslyAmortizedDeductedByPrepaidCard() { return this.previouslyAmortizedDeductedByPrepaidCard; } public void setPreviouslyAmortizedDeductedByPrepaidCard(Double previouslyAmortizedDeductedByPrepaidCard) { this.previouslyAmortizedDeductedByPrepaidCard = previouslyAmortizedDeductedByPrepaidCard; } public Double getPreviouslyAmortizedExpenditureAmount() { return this.previouslyAmortizedExpenditureAmount; } public void setPreviouslyAmortizedExpenditureAmount(Double previouslyAmortizedExpenditureAmount) { this.previouslyAmortizedExpenditureAmount = previouslyAmortizedExpenditureAmount; } public Double getCurrentAmortizationPretaxGrossAmount() { return this.currentAmortizationPretaxGrossAmount; } public void setCurrentAmortizationPretaxGrossAmount(Double currentAmortizationPretaxGrossAmount) { this.currentAmortizationPretaxGrossAmount = currentAmortizationPretaxGrossAmount; } public Double getCurrentAmortizationInvoiceDiscount() { return this.currentAmortizationInvoiceDiscount; } public void setCurrentAmortizationInvoiceDiscount(Double currentAmortizationInvoiceDiscount) { this.currentAmortizationInvoiceDiscount = currentAmortizationInvoiceDiscount; } public Double getCurrentAmortizationRoundDownDiscount() { return this.currentAmortizationRoundDownDiscount; } public void setCurrentAmortizationRoundDownDiscount(Double currentAmortizationRoundDownDiscount) { this.currentAmortizationRoundDownDiscount = currentAmortizationRoundDownDiscount; } public Double getCurrentAmortizationPretaxAmount() { return this.currentAmortizationPretaxAmount; } public void setCurrentAmortizationPretaxAmount(Double currentAmortizationPretaxAmount) { this.currentAmortizationPretaxAmount = currentAmortizationPretaxAmount; } public Double getCurrentAmortizationDeductedByCashCoupons() { return this.currentAmortizationDeductedByCashCoupons; } public void setCurrentAmortizationDeductedByCashCoupons(Double currentAmortizationDeductedByCashCoupons) { this.currentAmortizationDeductedByCashCoupons = currentAmortizationDeductedByCashCoupons; } public Double getCurrentAmortizationDeductedByCoupons() { return this.currentAmortizationDeductedByCoupons; } public void setCurrentAmortizationDeductedByCoupons(Double currentAmortizationDeductedByCoupons) { this.currentAmortizationDeductedByCoupons = currentAmortizationDeductedByCoupons; } public Double getCurrentAmortizationDeductedByPrepaidCard() { return this.currentAmortizationDeductedByPrepaidCard; } public void setCurrentAmortizationDeductedByPrepaidCard(Double currentAmortizationDeductedByPrepaidCard) { this.currentAmortizationDeductedByPrepaidCard = currentAmortizationDeductedByPrepaidCard; } public Double getCurrentAmortizationExpenditureAmount() { return this.currentAmortizationExpenditureAmount; } public void setCurrentAmortizationExpenditureAmount(Double currentAmortizationExpenditureAmount) { this.currentAmortizationExpenditureAmount = currentAmortizationExpenditureAmount; } public Double getRemainingAmortizationPretaxGrossAmount() { return this.remainingAmortizationPretaxGrossAmount; } public void setRemainingAmortizationPretaxGrossAmount(Double remainingAmortizationPretaxGrossAmount) { this.remainingAmortizationPretaxGrossAmount = remainingAmortizationPretaxGrossAmount; } public Double getRemainingAmortizationInvoiceDiscount() { return this.remainingAmortizationInvoiceDiscount; } public void setRemainingAmortizationInvoiceDiscount(Double remainingAmortizationInvoiceDiscount) { this.remainingAmortizationInvoiceDiscount = remainingAmortizationInvoiceDiscount; } public Double getRemainingAmortizationRoundDownDiscount() { return this.remainingAmortizationRoundDownDiscount; } public void setRemainingAmortizationRoundDownDiscount(Double remainingAmortizationRoundDownDiscount) { this.remainingAmortizationRoundDownDiscount = remainingAmortizationRoundDownDiscount; } public Double getRemainingAmortizationPretaxAmount() { return this.remainingAmortizationPretaxAmount; } public void setRemainingAmortizationPretaxAmount(Double remainingAmortizationPretaxAmount) { this.remainingAmortizationPretaxAmount = remainingAmortizationPretaxAmount; } public Double getRemainingAmortizationDeductedByCashCoupons() { return this.remainingAmortizationDeductedByCashCoupons; } public void setRemainingAmortizationDeductedByCashCoupons(Double remainingAmortizationDeductedByCashCoupons) { this.remainingAmortizationDeductedByCashCoupons = remainingAmortizationDeductedByCashCoupons; } public Double getRemainingAmortizationDeductedByCoupons() { return this.remainingAmortizationDeductedByCoupons; } public void setRemainingAmortizationDeductedByCoupons(Double remainingAmortizationDeductedByCoupons) { this.remainingAmortizationDeductedByCoupons = remainingAmortizationDeductedByCoupons; } public Double getRemainingAmortizationDeductedByPrepaidCard() { return this.remainingAmortizationDeductedByPrepaidCard; } public void setRemainingAmortizationDeductedByPrepaidCard(Double remainingAmortizationDeductedByPrepaidCard) { this.remainingAmortizationDeductedByPrepaidCard = remainingAmortizationDeductedByPrepaidCard; } public Double getRemainingAmortizationExpenditureAmount() { return this.remainingAmortizationExpenditureAmount; } public void setRemainingAmortizationExpenditureAmount(Double remainingAmortizationExpenditureAmount) { this.remainingAmortizationExpenditureAmount = remainingAmortizationExpenditureAmount; } } } @Override public DescribeInstanceAmortizedCostByAmortizationPeriodDateResponse getInstance(UnmarshallerContext context) { return DescribeInstanceAmortizedCostByAmortizationPeriodDateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceAmortizedCostByAmortizationPeriodRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeInstanceAmortizedCostByAmortizationPeriodRequest extends RpcAcsRequest<DescribeInstanceAmortizedCostByAmortizationPeriodResponse> { private String productDetail; private String productCode; private List<String> billOwnerIdLists; private String subscriptionType; private String billingCycle; private String costUnitCode; private List<String> consumePeriodFilters; private String nextToken; private List<String> billUserIdLists; private List<String> instanceIdLists; private Integer maxResults; public DescribeInstanceAmortizedCostByAmortizationPeriodRequest() { super("BssOpenApi", "2017-12-14", "DescribeInstanceAmortizedCostByAmortizationPeriod", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; if(productDetail != null){ putBodyParameter("ProductDetail", productDetail); } } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putBodyParameter("ProductCode", productCode); } } public List<String> getBillOwnerIdLists() { return this.billOwnerIdLists; } public void setBillOwnerIdLists(List<String> billOwnerIdLists) { this.billOwnerIdLists = billOwnerIdLists; if (billOwnerIdLists != null) { for (int i = 0; i < billOwnerIdLists.size(); i++) { putBodyParameter("BillOwnerIdList." + (i + 1) , billOwnerIdLists.get(i)); } } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putBodyParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putBodyParameter("BillingCycle", billingCycle); } } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; if(costUnitCode != null){ putBodyParameter("CostUnitCode", costUnitCode); } } public List<String> getConsumePeriodFilters() { return this.consumePeriodFilters; } public void setConsumePeriodFilters(List<String> consumePeriodFilters) { this.consumePeriodFilters = consumePeriodFilters; if (consumePeriodFilters != null) { for (int i = 0; i < consumePeriodFilters.size(); i++) { putBodyParameter("ConsumePeriodFilter." + (i + 1) , consumePeriodFilters.get(i)); } } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putBodyParameter("NextToken", nextToken); } } public List<String> getBillUserIdLists() { return this.billUserIdLists; } public void setBillUserIdLists(List<String> billUserIdLists) { this.billUserIdLists = billUserIdLists; if (billUserIdLists != null) { for (int i = 0; i < billUserIdLists.size(); i++) { putBodyParameter("BillUserIdList." + (i + 1) , billUserIdLists.get(i)); } } } public List<String> getInstanceIdLists() { return this.instanceIdLists; } public void setInstanceIdLists(List<String> instanceIdLists) { this.instanceIdLists = instanceIdLists; if (instanceIdLists != null) { for (int i = 0; i < instanceIdLists.size(); i++) { putBodyParameter("InstanceIdList." + (i + 1) , instanceIdLists.get(i)); } } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putBodyParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeInstanceAmortizedCostByAmortizationPeriodResponse> getResponseClass() { return DescribeInstanceAmortizedCostByAmortizationPeriodResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceAmortizedCostByAmortizationPeriodResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeInstanceAmortizedCostByAmortizationPeriodResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeInstanceAmortizedCostByAmortizationPeriodResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Data data; 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 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private String accountID; private String accountName; private Integer maxResults; private Integer totalCount; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String costUnit; private String costUnitCode; private String instanceID; private String resourceGroup; private String tag; private String internetIP; private String intranetIP; private String region; private String zone; private String splitAccountName; private String splitProductDetail; private String splitItemID; private String splitItemName; private String consumePeriod; private String amortizationStatus; private String amortizationPeriod; private Long billAccountID; private String billAccountName; private Long billOwnerID; private String billOwnerName; private String productCode; private String productName; private String productDetailCode; private String productDetail; private String bizType; private String subscriptionType; private Double pretaxGrossAmount; private Double invoiceDiscount; private Double roundDownDiscount; private Double pretaxAmount; private Double deductedByCashCoupons; private Double deductedByCoupons; private Double deductedByPrepaidCard; private Double expenditureAmount; private Double previouslyAmortizedPretaxGrossAmount; private Double previouslyAmortizedInvoiceDiscount; private Double previouslyAmortizedRoundDownDiscount; private Double previouslyAmortizedPretaxAmount; private Double previouslyAmortizedDeductedByCashCoupons; private Double previouslyAmortizedDeductedByCoupons; private Double previouslyAmortizedDeductedByPrepaidCard; private Double previouslyAmortizedExpenditureAmount; private Double currentAmortizationPretaxGrossAmount; private Double currentAmortizationInvoiceDiscount; private Double currentAmortizationRoundDownDiscount; private Double currentAmortizationPretaxAmount; private Double currentAmortizationDeductedByCashCoupons; private Double currentAmortizationDeductedByCoupons; private Double currentAmortizationDeductedByPrepaidCard; private Double currentAmortizationExpenditureAmount; private Double remainingAmortizationPretaxGrossAmount; private Double remainingAmortizationInvoiceDiscount; private Double remainingAmortizationRoundDownDiscount; private Double remainingAmortizationPretaxAmount; private Double remainingAmortizationDeductedByCashCoupons; private Double remainingAmortizationDeductedByCoupons; private Double remainingAmortizationDeductedByPrepaidCard; private Double remainingAmortizationExpenditureAmount; public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getInternetIP() { return this.internetIP; } public void setInternetIP(String internetIP) { this.internetIP = internetIP; } public String getIntranetIP() { return this.intranetIP; } public void setIntranetIP(String intranetIP) { this.intranetIP = intranetIP; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getSplitAccountName() { return this.splitAccountName; } public void setSplitAccountName(String splitAccountName) { this.splitAccountName = splitAccountName; } public String getSplitProductDetail() { return this.splitProductDetail; } public void setSplitProductDetail(String splitProductDetail) { this.splitProductDetail = splitProductDetail; } public String getSplitItemID() { return this.splitItemID; } public void setSplitItemID(String splitItemID) { this.splitItemID = splitItemID; } public String getSplitItemName() { return this.splitItemName; } public void setSplitItemName(String splitItemName) { this.splitItemName = splitItemName; } public String getConsumePeriod() { return this.consumePeriod; } public void setConsumePeriod(String consumePeriod) { this.consumePeriod = consumePeriod; } public String getAmortizationStatus() { return this.amortizationStatus; } public void setAmortizationStatus(String amortizationStatus) { this.amortizationStatus = amortizationStatus; } public String getAmortizationPeriod() { return this.amortizationPeriod; } public void setAmortizationPeriod(String amortizationPeriod) { this.amortizationPeriod = amortizationPeriod; } public Long getBillAccountID() { return this.billAccountID; } public void setBillAccountID(Long billAccountID) { this.billAccountID = billAccountID; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public Long getBillOwnerID() { return this.billOwnerID; } public void setBillOwnerID(Long billOwnerID) { this.billOwnerID = billOwnerID; } public String getBillOwnerName() { return this.billOwnerName; } public void setBillOwnerName(String billOwnerName) { this.billOwnerName = billOwnerName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductDetailCode() { return this.productDetailCode; } public void setProductDetailCode(String productDetailCode) { this.productDetailCode = productDetailCode; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Double getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Double pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Double getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Double invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Double getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(Double roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public Double getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Double pretaxAmount) { this.pretaxAmount = pretaxAmount; } public Double getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Double deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public Double getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Double deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public Double getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Double deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public Double getExpenditureAmount() { return this.expenditureAmount; } public void setExpenditureAmount(Double expenditureAmount) { this.expenditureAmount = expenditureAmount; } public Double getPreviouslyAmortizedPretaxGrossAmount() { return this.previouslyAmortizedPretaxGrossAmount; } public void setPreviouslyAmortizedPretaxGrossAmount(Double previouslyAmortizedPretaxGrossAmount) { this.previouslyAmortizedPretaxGrossAmount = previouslyAmortizedPretaxGrossAmount; } public Double getPreviouslyAmortizedInvoiceDiscount() { return this.previouslyAmortizedInvoiceDiscount; } public void setPreviouslyAmortizedInvoiceDiscount(Double previouslyAmortizedInvoiceDiscount) { this.previouslyAmortizedInvoiceDiscount = previouslyAmortizedInvoiceDiscount; } public Double getPreviouslyAmortizedRoundDownDiscount() { return this.previouslyAmortizedRoundDownDiscount; } public void setPreviouslyAmortizedRoundDownDiscount(Double previouslyAmortizedRoundDownDiscount) { this.previouslyAmortizedRoundDownDiscount = previouslyAmortizedRoundDownDiscount; } public Double getPreviouslyAmortizedPretaxAmount() { return this.previouslyAmortizedPretaxAmount; } public void setPreviouslyAmortizedPretaxAmount(Double previouslyAmortizedPretaxAmount) { this.previouslyAmortizedPretaxAmount = previouslyAmortizedPretaxAmount; } public Double getPreviouslyAmortizedDeductedByCashCoupons() { return this.previouslyAmortizedDeductedByCashCoupons; } public void setPreviouslyAmortizedDeductedByCashCoupons(Double previouslyAmortizedDeductedByCashCoupons) { this.previouslyAmortizedDeductedByCashCoupons = previouslyAmortizedDeductedByCashCoupons; } public Double getPreviouslyAmortizedDeductedByCoupons() { return this.previouslyAmortizedDeductedByCoupons; } public void setPreviouslyAmortizedDeductedByCoupons(Double previouslyAmortizedDeductedByCoupons) { this.previouslyAmortizedDeductedByCoupons = previouslyAmortizedDeductedByCoupons; } public Double getPreviouslyAmortizedDeductedByPrepaidCard() { return this.previouslyAmortizedDeductedByPrepaidCard; } public void setPreviouslyAmortizedDeductedByPrepaidCard(Double previouslyAmortizedDeductedByPrepaidCard) { this.previouslyAmortizedDeductedByPrepaidCard = previouslyAmortizedDeductedByPrepaidCard; } public Double getPreviouslyAmortizedExpenditureAmount() { return this.previouslyAmortizedExpenditureAmount; } public void setPreviouslyAmortizedExpenditureAmount(Double previouslyAmortizedExpenditureAmount) { this.previouslyAmortizedExpenditureAmount = previouslyAmortizedExpenditureAmount; } public Double getCurrentAmortizationPretaxGrossAmount() { return this.currentAmortizationPretaxGrossAmount; } public void setCurrentAmortizationPretaxGrossAmount(Double currentAmortizationPretaxGrossAmount) { this.currentAmortizationPretaxGrossAmount = currentAmortizationPretaxGrossAmount; } public Double getCurrentAmortizationInvoiceDiscount() { return this.currentAmortizationInvoiceDiscount; } public void setCurrentAmortizationInvoiceDiscount(Double currentAmortizationInvoiceDiscount) { this.currentAmortizationInvoiceDiscount = currentAmortizationInvoiceDiscount; } public Double getCurrentAmortizationRoundDownDiscount() { return this.currentAmortizationRoundDownDiscount; } public void setCurrentAmortizationRoundDownDiscount(Double currentAmortizationRoundDownDiscount) { this.currentAmortizationRoundDownDiscount = currentAmortizationRoundDownDiscount; } public Double getCurrentAmortizationPretaxAmount() { return this.currentAmortizationPretaxAmount; } public void setCurrentAmortizationPretaxAmount(Double currentAmortizationPretaxAmount) { this.currentAmortizationPretaxAmount = currentAmortizationPretaxAmount; } public Double getCurrentAmortizationDeductedByCashCoupons() { return this.currentAmortizationDeductedByCashCoupons; } public void setCurrentAmortizationDeductedByCashCoupons(Double currentAmortizationDeductedByCashCoupons) { this.currentAmortizationDeductedByCashCoupons = currentAmortizationDeductedByCashCoupons; } public Double getCurrentAmortizationDeductedByCoupons() { return this.currentAmortizationDeductedByCoupons; } public void setCurrentAmortizationDeductedByCoupons(Double currentAmortizationDeductedByCoupons) { this.currentAmortizationDeductedByCoupons = currentAmortizationDeductedByCoupons; } public Double getCurrentAmortizationDeductedByPrepaidCard() { return this.currentAmortizationDeductedByPrepaidCard; } public void setCurrentAmortizationDeductedByPrepaidCard(Double currentAmortizationDeductedByPrepaidCard) { this.currentAmortizationDeductedByPrepaidCard = currentAmortizationDeductedByPrepaidCard; } public Double getCurrentAmortizationExpenditureAmount() { return this.currentAmortizationExpenditureAmount; } public void setCurrentAmortizationExpenditureAmount(Double currentAmortizationExpenditureAmount) { this.currentAmortizationExpenditureAmount = currentAmortizationExpenditureAmount; } public Double getRemainingAmortizationPretaxGrossAmount() { return this.remainingAmortizationPretaxGrossAmount; } public void setRemainingAmortizationPretaxGrossAmount(Double remainingAmortizationPretaxGrossAmount) { this.remainingAmortizationPretaxGrossAmount = remainingAmortizationPretaxGrossAmount; } public Double getRemainingAmortizationInvoiceDiscount() { return this.remainingAmortizationInvoiceDiscount; } public void setRemainingAmortizationInvoiceDiscount(Double remainingAmortizationInvoiceDiscount) { this.remainingAmortizationInvoiceDiscount = remainingAmortizationInvoiceDiscount; } public Double getRemainingAmortizationRoundDownDiscount() { return this.remainingAmortizationRoundDownDiscount; } public void setRemainingAmortizationRoundDownDiscount(Double remainingAmortizationRoundDownDiscount) { this.remainingAmortizationRoundDownDiscount = remainingAmortizationRoundDownDiscount; } public Double getRemainingAmortizationPretaxAmount() { return this.remainingAmortizationPretaxAmount; } public void setRemainingAmortizationPretaxAmount(Double remainingAmortizationPretaxAmount) { this.remainingAmortizationPretaxAmount = remainingAmortizationPretaxAmount; } public Double getRemainingAmortizationDeductedByCashCoupons() { return this.remainingAmortizationDeductedByCashCoupons; } public void setRemainingAmortizationDeductedByCashCoupons(Double remainingAmortizationDeductedByCashCoupons) { this.remainingAmortizationDeductedByCashCoupons = remainingAmortizationDeductedByCashCoupons; } public Double getRemainingAmortizationDeductedByCoupons() { return this.remainingAmortizationDeductedByCoupons; } public void setRemainingAmortizationDeductedByCoupons(Double remainingAmortizationDeductedByCoupons) { this.remainingAmortizationDeductedByCoupons = remainingAmortizationDeductedByCoupons; } public Double getRemainingAmortizationDeductedByPrepaidCard() { return this.remainingAmortizationDeductedByPrepaidCard; } public void setRemainingAmortizationDeductedByPrepaidCard(Double remainingAmortizationDeductedByPrepaidCard) { this.remainingAmortizationDeductedByPrepaidCard = remainingAmortizationDeductedByPrepaidCard; } public Double getRemainingAmortizationExpenditureAmount() { return this.remainingAmortizationExpenditureAmount; } public void setRemainingAmortizationExpenditureAmount(Double remainingAmortizationExpenditureAmount) { this.remainingAmortizationExpenditureAmount = remainingAmortizationExpenditureAmount; } } } @Override public DescribeInstanceAmortizedCostByAmortizationPeriodResponse getInstance(UnmarshallerContext context) { return DescribeInstanceAmortizedCostByAmortizationPeriodResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceAmortizedCostByConsumePeriodRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeInstanceAmortizedCostByConsumePeriodRequest extends RpcAcsRequest<DescribeInstanceAmortizedCostByConsumePeriodResponse> { private String productDetail; private String productCode; private List<String> billOwnerIdLists; private String subscriptionType; private String billingCycle; private String costUnitCode; private List<String> amortizationPeriodFilters; private String nextToken; private List<String> billUserIdLists; private List<String> instanceIdLists; private Integer maxResults; public DescribeInstanceAmortizedCostByConsumePeriodRequest() { super("BssOpenApi", "2017-12-14", "DescribeInstanceAmortizedCostByConsumePeriod", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; if(productDetail != null){ putBodyParameter("ProductDetail", productDetail); } } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putBodyParameter("ProductCode", productCode); } } public List<String> getBillOwnerIdLists() { return this.billOwnerIdLists; } public void setBillOwnerIdLists(List<String> billOwnerIdLists) { this.billOwnerIdLists = billOwnerIdLists; if (billOwnerIdLists != null) { for (int i = 0; i < billOwnerIdLists.size(); i++) { putBodyParameter("BillOwnerIdList." + (i + 1) , billOwnerIdLists.get(i)); } } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putBodyParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putBodyParameter("BillingCycle", billingCycle); } } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; if(costUnitCode != null){ putBodyParameter("CostUnitCode", costUnitCode); } } public List<String> getAmortizationPeriodFilters() { return this.amortizationPeriodFilters; } public void setAmortizationPeriodFilters(List<String> amortizationPeriodFilters) { this.amortizationPeriodFilters = amortizationPeriodFilters; if (amortizationPeriodFilters != null) { for (int i = 0; i < amortizationPeriodFilters.size(); i++) { putBodyParameter("AmortizationPeriodFilter." + (i + 1) , amortizationPeriodFilters.get(i)); } } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putBodyParameter("NextToken", nextToken); } } public List<String> getBillUserIdLists() { return this.billUserIdLists; } public void setBillUserIdLists(List<String> billUserIdLists) { this.billUserIdLists = billUserIdLists; if (billUserIdLists != null) { for (int i = 0; i < billUserIdLists.size(); i++) { putBodyParameter("BillUserIdList." + (i + 1) , billUserIdLists.get(i)); } } } public List<String> getInstanceIdLists() { return this.instanceIdLists; } public void setInstanceIdLists(List<String> instanceIdLists) { this.instanceIdLists = instanceIdLists; if (instanceIdLists != null) { for (int i = 0; i < instanceIdLists.size(); i++) { putBodyParameter("InstanceIdList." + (i + 1) , instanceIdLists.get(i)); } } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putBodyParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeInstanceAmortizedCostByConsumePeriodResponse> getResponseClass() { return DescribeInstanceAmortizedCostByConsumePeriodResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceAmortizedCostByConsumePeriodResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeInstanceAmortizedCostByConsumePeriodResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeInstanceAmortizedCostByConsumePeriodResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Data data; 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 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private String accountID; private String accountName; private Integer maxResults; private Integer totalCount; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String costUnit; private String costUnitCode; private String instanceID; private String resourceGroup; private String tag; private String internetIP; private String intranetIP; private String region; private String zone; private String splitAccountName; private String splitProductDetail; private String splitItemID; private String splitItemName; private String consumePeriod; private String amortizationStatus; private String amortizationPeriod; private Long billAccountID; private String billAccountName; private Long billOwnerID; private String billOwnerName; private String productCode; private String productName; private String productDetailCode; private String productDetail; private String bizType; private String subscriptionType; private Double pretaxGrossAmount; private Double invoiceDiscount; private Double roundDownDiscount; private Double pretaxAmount; private Double deductedByCashCoupons; private Double deductedByCoupons; private Double deductedByPrepaidCard; private Double expenditureAmount; private Double previouslyAmortizedPretaxGrossAmount; private Double previouslyAmortizedInvoiceDiscount; private Double previouslyAmortizedRoundDownDiscount; private Double previouslyAmortizedPretaxAmount; private Double previouslyAmortizedDeductedByCashCoupons; private Double previouslyAmortizedDeductedByCoupons; private Double previouslyAmortizedDeductedByPrepaidCard; private Double previouslyAmortizedExpenditureAmount; private Double currentAmortizationPretaxGrossAmount; private Double currentAmortizationInvoiceDiscount; private Double currentAmortizationRoundDownDiscount; private Double currentAmortizationPretaxAmount; private Double currentAmortizationDeductedByCashCoupons; private Double currentAmortizationDeductedByCoupons; private Double currentAmortizationDeductedByPrepaidCard; private Double currentAmortizationExpenditureAmount; private Double remainingAmortizationPretaxGrossAmount; private Double remainingAmortizationInvoiceDiscount; private Double remainingAmortizationRoundDownDiscount; private Double remainingAmortizationPretaxAmount; private Double remainingAmortizationDeductedByCashCoupons; private Double remainingAmortizationDeductedByCoupons; private Double remainingAmortizationDeductedByPrepaidCard; private Double remainingAmortizationExpenditureAmount; public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getInternetIP() { return this.internetIP; } public void setInternetIP(String internetIP) { this.internetIP = internetIP; } public String getIntranetIP() { return this.intranetIP; } public void setIntranetIP(String intranetIP) { this.intranetIP = intranetIP; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getSplitAccountName() { return this.splitAccountName; } public void setSplitAccountName(String splitAccountName) { this.splitAccountName = splitAccountName; } public String getSplitProductDetail() { return this.splitProductDetail; } public void setSplitProductDetail(String splitProductDetail) { this.splitProductDetail = splitProductDetail; } public String getSplitItemID() { return this.splitItemID; } public void setSplitItemID(String splitItemID) { this.splitItemID = splitItemID; } public String getSplitItemName() { return this.splitItemName; } public void setSplitItemName(String splitItemName) { this.splitItemName = splitItemName; } public String getConsumePeriod() { return this.consumePeriod; } public void setConsumePeriod(String consumePeriod) { this.consumePeriod = consumePeriod; } public String getAmortizationStatus() { return this.amortizationStatus; } public void setAmortizationStatus(String amortizationStatus) { this.amortizationStatus = amortizationStatus; } public String getAmortizationPeriod() { return this.amortizationPeriod; } public void setAmortizationPeriod(String amortizationPeriod) { this.amortizationPeriod = amortizationPeriod; } public Long getBillAccountID() { return this.billAccountID; } public void setBillAccountID(Long billAccountID) { this.billAccountID = billAccountID; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public Long getBillOwnerID() { return this.billOwnerID; } public void setBillOwnerID(Long billOwnerID) { this.billOwnerID = billOwnerID; } public String getBillOwnerName() { return this.billOwnerName; } public void setBillOwnerName(String billOwnerName) { this.billOwnerName = billOwnerName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductDetailCode() { return this.productDetailCode; } public void setProductDetailCode(String productDetailCode) { this.productDetailCode = productDetailCode; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Double getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Double pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Double getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Double invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Double getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(Double roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public Double getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Double pretaxAmount) { this.pretaxAmount = pretaxAmount; } public Double getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Double deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public Double getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Double deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public Double getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Double deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public Double getExpenditureAmount() { return this.expenditureAmount; } public void setExpenditureAmount(Double expenditureAmount) { this.expenditureAmount = expenditureAmount; } public Double getPreviouslyAmortizedPretaxGrossAmount() { return this.previouslyAmortizedPretaxGrossAmount; } public void setPreviouslyAmortizedPretaxGrossAmount(Double previouslyAmortizedPretaxGrossAmount) { this.previouslyAmortizedPretaxGrossAmount = previouslyAmortizedPretaxGrossAmount; } public Double getPreviouslyAmortizedInvoiceDiscount() { return this.previouslyAmortizedInvoiceDiscount; } public void setPreviouslyAmortizedInvoiceDiscount(Double previouslyAmortizedInvoiceDiscount) { this.previouslyAmortizedInvoiceDiscount = previouslyAmortizedInvoiceDiscount; } public Double getPreviouslyAmortizedRoundDownDiscount() { return this.previouslyAmortizedRoundDownDiscount; } public void setPreviouslyAmortizedRoundDownDiscount(Double previouslyAmortizedRoundDownDiscount) { this.previouslyAmortizedRoundDownDiscount = previouslyAmortizedRoundDownDiscount; } public Double getPreviouslyAmortizedPretaxAmount() { return this.previouslyAmortizedPretaxAmount; } public void setPreviouslyAmortizedPretaxAmount(Double previouslyAmortizedPretaxAmount) { this.previouslyAmortizedPretaxAmount = previouslyAmortizedPretaxAmount; } public Double getPreviouslyAmortizedDeductedByCashCoupons() { return this.previouslyAmortizedDeductedByCashCoupons; } public void setPreviouslyAmortizedDeductedByCashCoupons(Double previouslyAmortizedDeductedByCashCoupons) { this.previouslyAmortizedDeductedByCashCoupons = previouslyAmortizedDeductedByCashCoupons; } public Double getPreviouslyAmortizedDeductedByCoupons() { return this.previouslyAmortizedDeductedByCoupons; } public void setPreviouslyAmortizedDeductedByCoupons(Double previouslyAmortizedDeductedByCoupons) { this.previouslyAmortizedDeductedByCoupons = previouslyAmortizedDeductedByCoupons; } public Double getPreviouslyAmortizedDeductedByPrepaidCard() { return this.previouslyAmortizedDeductedByPrepaidCard; } public void setPreviouslyAmortizedDeductedByPrepaidCard(Double previouslyAmortizedDeductedByPrepaidCard) { this.previouslyAmortizedDeductedByPrepaidCard = previouslyAmortizedDeductedByPrepaidCard; } public Double getPreviouslyAmortizedExpenditureAmount() { return this.previouslyAmortizedExpenditureAmount; } public void setPreviouslyAmortizedExpenditureAmount(Double previouslyAmortizedExpenditureAmount) { this.previouslyAmortizedExpenditureAmount = previouslyAmortizedExpenditureAmount; } public Double getCurrentAmortizationPretaxGrossAmount() { return this.currentAmortizationPretaxGrossAmount; } public void setCurrentAmortizationPretaxGrossAmount(Double currentAmortizationPretaxGrossAmount) { this.currentAmortizationPretaxGrossAmount = currentAmortizationPretaxGrossAmount; } public Double getCurrentAmortizationInvoiceDiscount() { return this.currentAmortizationInvoiceDiscount; } public void setCurrentAmortizationInvoiceDiscount(Double currentAmortizationInvoiceDiscount) { this.currentAmortizationInvoiceDiscount = currentAmortizationInvoiceDiscount; } public Double getCurrentAmortizationRoundDownDiscount() { return this.currentAmortizationRoundDownDiscount; } public void setCurrentAmortizationRoundDownDiscount(Double currentAmortizationRoundDownDiscount) { this.currentAmortizationRoundDownDiscount = currentAmortizationRoundDownDiscount; } public Double getCurrentAmortizationPretaxAmount() { return this.currentAmortizationPretaxAmount; } public void setCurrentAmortizationPretaxAmount(Double currentAmortizationPretaxAmount) { this.currentAmortizationPretaxAmount = currentAmortizationPretaxAmount; } public Double getCurrentAmortizationDeductedByCashCoupons() { return this.currentAmortizationDeductedByCashCoupons; } public void setCurrentAmortizationDeductedByCashCoupons(Double currentAmortizationDeductedByCashCoupons) { this.currentAmortizationDeductedByCashCoupons = currentAmortizationDeductedByCashCoupons; } public Double getCurrentAmortizationDeductedByCoupons() { return this.currentAmortizationDeductedByCoupons; } public void setCurrentAmortizationDeductedByCoupons(Double currentAmortizationDeductedByCoupons) { this.currentAmortizationDeductedByCoupons = currentAmortizationDeductedByCoupons; } public Double getCurrentAmortizationDeductedByPrepaidCard() { return this.currentAmortizationDeductedByPrepaidCard; } public void setCurrentAmortizationDeductedByPrepaidCard(Double currentAmortizationDeductedByPrepaidCard) { this.currentAmortizationDeductedByPrepaidCard = currentAmortizationDeductedByPrepaidCard; } public Double getCurrentAmortizationExpenditureAmount() { return this.currentAmortizationExpenditureAmount; } public void setCurrentAmortizationExpenditureAmount(Double currentAmortizationExpenditureAmount) { this.currentAmortizationExpenditureAmount = currentAmortizationExpenditureAmount; } public Double getRemainingAmortizationPretaxGrossAmount() { return this.remainingAmortizationPretaxGrossAmount; } public void setRemainingAmortizationPretaxGrossAmount(Double remainingAmortizationPretaxGrossAmount) { this.remainingAmortizationPretaxGrossAmount = remainingAmortizationPretaxGrossAmount; } public Double getRemainingAmortizationInvoiceDiscount() { return this.remainingAmortizationInvoiceDiscount; } public void setRemainingAmortizationInvoiceDiscount(Double remainingAmortizationInvoiceDiscount) { this.remainingAmortizationInvoiceDiscount = remainingAmortizationInvoiceDiscount; } public Double getRemainingAmortizationRoundDownDiscount() { return this.remainingAmortizationRoundDownDiscount; } public void setRemainingAmortizationRoundDownDiscount(Double remainingAmortizationRoundDownDiscount) { this.remainingAmortizationRoundDownDiscount = remainingAmortizationRoundDownDiscount; } public Double getRemainingAmortizationPretaxAmount() { return this.remainingAmortizationPretaxAmount; } public void setRemainingAmortizationPretaxAmount(Double remainingAmortizationPretaxAmount) { this.remainingAmortizationPretaxAmount = remainingAmortizationPretaxAmount; } public Double getRemainingAmortizationDeductedByCashCoupons() { return this.remainingAmortizationDeductedByCashCoupons; } public void setRemainingAmortizationDeductedByCashCoupons(Double remainingAmortizationDeductedByCashCoupons) { this.remainingAmortizationDeductedByCashCoupons = remainingAmortizationDeductedByCashCoupons; } public Double getRemainingAmortizationDeductedByCoupons() { return this.remainingAmortizationDeductedByCoupons; } public void setRemainingAmortizationDeductedByCoupons(Double remainingAmortizationDeductedByCoupons) { this.remainingAmortizationDeductedByCoupons = remainingAmortizationDeductedByCoupons; } public Double getRemainingAmortizationDeductedByPrepaidCard() { return this.remainingAmortizationDeductedByPrepaidCard; } public void setRemainingAmortizationDeductedByPrepaidCard(Double remainingAmortizationDeductedByPrepaidCard) { this.remainingAmortizationDeductedByPrepaidCard = remainingAmortizationDeductedByPrepaidCard; } public Double getRemainingAmortizationExpenditureAmount() { return this.remainingAmortizationExpenditureAmount; } public void setRemainingAmortizationExpenditureAmount(Double remainingAmortizationExpenditureAmount) { this.remainingAmortizationExpenditureAmount = remainingAmortizationExpenditureAmount; } } } @Override public DescribeInstanceAmortizedCostByConsumePeriodResponse getInstance(UnmarshallerContext context) { return DescribeInstanceAmortizedCostByConsumePeriodResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceBillRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeInstanceBillRequest extends RpcAcsRequest<DescribeInstanceBillResponse> { private String productCode; private Boolean isHideZeroCharge; private String subscriptionType; private Long billOwnerId; private String productType; private String nextToken; private String billingCycle; private Long ownerId; private String billingDate; private Boolean isBillingItem; private String instanceID; private String granularity; private Integer maxResults; private String pipCode; public DescribeInstanceBillRequest() { super("BssOpenApi", "2017-12-14", "DescribeInstanceBill", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public Boolean getIsHideZeroCharge() { return this.isHideZeroCharge; } public void setIsHideZeroCharge(Boolean isHideZeroCharge) { this.isHideZeroCharge = isHideZeroCharge; if(isHideZeroCharge != null){ putQueryParameter("IsHideZeroCharge", isHideZeroCharge.toString()); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putQueryParameter("BillingCycle", billingCycle); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; if(billingDate != null){ putQueryParameter("BillingDate", billingDate); } } public Boolean getIsBillingItem() { return this.isBillingItem; } public void setIsBillingItem(Boolean isBillingItem) { this.isBillingItem = isBillingItem; if(isBillingItem != null){ putQueryParameter("IsBillingItem", isBillingItem.toString()); } } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; if(instanceID != null){ putQueryParameter("InstanceID", instanceID); } } public String getGranularity() { return this.granularity; } public void setGranularity(String granularity) { this.granularity = granularity; if(granularity != null){ putQueryParameter("Granularity", granularity); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; if(pipCode != null){ putQueryParameter("PipCode", pipCode); } } @Override public Class<DescribeInstanceBillResponse> getResponseClass() { return DescribeInstanceBillResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceBillResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeInstanceBillResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeInstanceBillResponse extends AcsResponse { private String code; private String message; 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 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 String nextToken; private String billingCycle; private Integer maxResults; private String accountID; private Integer totalCount; private String accountName; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String billingDate; private String instanceConfig; private String internetIP; private String item; private String tag; private String instanceID; private String currency; private String billAccountName; private Float deductedByCashCoupons; private String subscriptionType; private String bizType; private String instanceSpec; private Float deductedByCoupons; private String billingItem; private String billingItemCode; private String region; private Float outstandingAmount; private String costUnit; private String listPriceUnit; private String resourceGroup; private String pipCode; private String servicePeriodUnit; private Float pretaxAmount; private String commodityCode; private String productName; private Float adjustAmount; private String nickName; private String productDetail; private String usage; private String intranetIP; private String ownerID; private Float deductedByPrepaidCard; private String usageUnit; private String billAccountID; private Float paymentAmount; private Float invoiceDiscount; private String deductedByResourcePackage; private String productType; private String servicePeriod; private String zone; private String listPrice; private Float pretaxGrossAmount; private Float cashAmount; private String productCode; private String billingType; private String itemName; public String getBillingDate() { return this.billingDate; } public void setBillingDate(String billingDate) { this.billingDate = billingDate; } public String getInstanceConfig() { return this.instanceConfig; } public void setInstanceConfig(String instanceConfig) { this.instanceConfig = instanceConfig; } public String getInternetIP() { return this.internetIP; } public void setInternetIP(String internetIP) { this.internetIP = internetIP; } public String getItem() { return this.item; } public void setItem(String item) { this.item = item; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public Float getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Float deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getInstanceSpec() { return this.instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public Float getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Float deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public String getBillingItem() { return this.billingItem; } public void setBillingItem(String billingItem) { this.billingItem = billingItem; } public String getBillingItemCode() { return this.billingItemCode; } public void setBillingItemCode(String billingItemCode) { this.billingItemCode = billingItemCode; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Float getOutstandingAmount() { return this.outstandingAmount; } public void setOutstandingAmount(Float outstandingAmount) { this.outstandingAmount = outstandingAmount; } public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public String getListPriceUnit() { return this.listPriceUnit; } public void setListPriceUnit(String listPriceUnit) { this.listPriceUnit = listPriceUnit; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getPipCode() { return this.pipCode; } public void setPipCode(String pipCode) { this.pipCode = pipCode; } public String getServicePeriodUnit() { return this.servicePeriodUnit; } public void setServicePeriodUnit(String servicePeriodUnit) { this.servicePeriodUnit = servicePeriodUnit; } public Float getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Float pretaxAmount) { this.pretaxAmount = pretaxAmount; } public String getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public Float getAdjustAmount() { return this.adjustAmount; } public void setAdjustAmount(Float adjustAmount) { this.adjustAmount = adjustAmount; } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getUsage() { return this.usage; } public void setUsage(String usage) { this.usage = usage; } public String getIntranetIP() { return this.intranetIP; } public void setIntranetIP(String intranetIP) { this.intranetIP = intranetIP; } public String getOwnerID() { return this.ownerID; } public void setOwnerID(String ownerID) { this.ownerID = ownerID; } public Float getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Float deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public String getUsageUnit() { return this.usageUnit; } public void setUsageUnit(String usageUnit) { this.usageUnit = usageUnit; } public String getBillAccountID() { return this.billAccountID; } public void setBillAccountID(String billAccountID) { this.billAccountID = billAccountID; } public Float getPaymentAmount() { return this.paymentAmount; } public void setPaymentAmount(Float paymentAmount) { this.paymentAmount = paymentAmount; } public Float getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Float invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public String getDeductedByResourcePackage() { return this.deductedByResourcePackage; } public void setDeductedByResourcePackage(String deductedByResourcePackage) { this.deductedByResourcePackage = deductedByResourcePackage; } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; } public String getServicePeriod() { return this.servicePeriod; } public void setServicePeriod(String servicePeriod) { this.servicePeriod = servicePeriod; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getListPrice() { return this.listPrice; } public void setListPrice(String listPrice) { this.listPrice = listPrice; } public Float getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Float pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Float getCashAmount() { return this.cashAmount; } public void setCashAmount(Float cashAmount) { this.cashAmount = cashAmount; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getBillingType() { return this.billingType; } public void setBillingType(String billingType) { this.billingType = billingType; } public String getItemName() { return this.itemName; } public void setItemName(String itemName) { this.itemName = itemName; } } } @Override public DescribeInstanceBillResponse getInstance(UnmarshallerContext context) { return DescribeInstanceBillResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceDeductAmortizedCostByAmortizationPeriodRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeInstanceDeductAmortizedCostByAmortizationPeriodRequest extends RpcAcsRequest<DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponse> { private String productDetail; private String productCode; private List<String> billOwnerIdLists; private String subscriptionType; private String billingCycle; private String costUnitCode; private String nextToken; private List<String> billUserIdLists; private List<String> instanceIdLists; private Integer maxResults; public DescribeInstanceDeductAmortizedCostByAmortizationPeriodRequest() { super("BssOpenApi", "2017-12-14", "DescribeInstanceDeductAmortizedCostByAmortizationPeriod", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; if(productDetail != null){ putBodyParameter("ProductDetail", productDetail); } } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putBodyParameter("ProductCode", productCode); } } public List<String> getBillOwnerIdLists() { return this.billOwnerIdLists; } public void setBillOwnerIdLists(List<String> billOwnerIdLists) { this.billOwnerIdLists = billOwnerIdLists; if (billOwnerIdLists != null) { for (int i = 0; i < billOwnerIdLists.size(); i++) { putBodyParameter("BillOwnerIdList." + (i + 1) , billOwnerIdLists.get(i)); } } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putBodyParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putBodyParameter("BillingCycle", billingCycle); } } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; if(costUnitCode != null){ putBodyParameter("CostUnitCode", costUnitCode); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putBodyParameter("NextToken", nextToken); } } public List<String> getBillUserIdLists() { return this.billUserIdLists; } public void setBillUserIdLists(List<String> billUserIdLists) { this.billUserIdLists = billUserIdLists; if (billUserIdLists != null) { for (int i = 0; i < billUserIdLists.size(); i++) { putBodyParameter("BillUserIdList." + (i + 1) , billUserIdLists.get(i)); } } } public List<String> getInstanceIdLists() { return this.instanceIdLists; } public void setInstanceIdLists(List<String> instanceIdLists) { this.instanceIdLists = instanceIdLists; if (instanceIdLists != null) { for (int i = 0; i < instanceIdLists.size(); i++) { putBodyParameter("InstanceIdList." + (i + 1) , instanceIdLists.get(i)); } } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putBodyParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponse> getResponseClass() { return DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Data data; 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 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private String accountID; private String accountName; private Integer maxResults; private Integer totalCount; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String costUnit; private String costUnitCode; private String instanceID; private String resourceGroup; private String tag; private String internetIP; private String intranetIP; private String region; private String zone; private String splitAccountName; private String splitProductDetail; private String splitItemID; private String splitItemName; private String consumePeriod; private String amortizationStatus; private String amortizationPeriod; private String amortizationPeriodDay; private Long billAccountID; private String billAccountName; private Long billOwnerID; private String billOwnerName; private String productCode; private String productName; private String productDetailCode; private String productDetail; private String bizType; private String subscriptionType; private String instanceConfig; private String referFrOwnerID; private String referFrInstanceID; private String referFrProductDetailCode; private Double pretaxGrossAmount; private Double invoiceDiscount; private Double roundDownDiscount; private Double pretaxAmount; private Double deductedByCoupons; private Double currentAmortizationPretaxGrossAmount; private Double currentAmortizationInvoiceDiscount; private Double currentAmortizationRoundDownDiscount; private Double currentAmortizationPretaxAmount; private Double currentAmortizationDeductedByCoupons; private Double unusedAmortizationPretaxGrossAmount; private Double unusedAmortizationInvoiceDiscount; private Double unusedAmortizationRoundDownDiscount; private Double unusedAmortizationPretaxAmount; private Double unusedAmortizationDeductedByCoupons; public String getCostUnit() { return this.costUnit; } public void setCostUnit(String costUnit) { this.costUnit = costUnit; } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; } public String getInstanceID() { return this.instanceID; } public void setInstanceID(String instanceID) { this.instanceID = instanceID; } public String getResourceGroup() { return this.resourceGroup; } public void setResourceGroup(String resourceGroup) { this.resourceGroup = resourceGroup; } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } public String getInternetIP() { return this.internetIP; } public void setInternetIP(String internetIP) { this.internetIP = internetIP; } public String getIntranetIP() { return this.intranetIP; } public void setIntranetIP(String intranetIP) { this.intranetIP = intranetIP; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getZone() { return this.zone; } public void setZone(String zone) { this.zone = zone; } public String getSplitAccountName() { return this.splitAccountName; } public void setSplitAccountName(String splitAccountName) { this.splitAccountName = splitAccountName; } public String getSplitProductDetail() { return this.splitProductDetail; } public void setSplitProductDetail(String splitProductDetail) { this.splitProductDetail = splitProductDetail; } public String getSplitItemID() { return this.splitItemID; } public void setSplitItemID(String splitItemID) { this.splitItemID = splitItemID; } public String getSplitItemName() { return this.splitItemName; } public void setSplitItemName(String splitItemName) { this.splitItemName = splitItemName; } public String getConsumePeriod() { return this.consumePeriod; } public void setConsumePeriod(String consumePeriod) { this.consumePeriod = consumePeriod; } public String getAmortizationStatus() { return this.amortizationStatus; } public void setAmortizationStatus(String amortizationStatus) { this.amortizationStatus = amortizationStatus; } public String getAmortizationPeriod() { return this.amortizationPeriod; } public void setAmortizationPeriod(String amortizationPeriod) { this.amortizationPeriod = amortizationPeriod; } public String getAmortizationPeriodDay() { return this.amortizationPeriodDay; } public void setAmortizationPeriodDay(String amortizationPeriodDay) { this.amortizationPeriodDay = amortizationPeriodDay; } public Long getBillAccountID() { return this.billAccountID; } public void setBillAccountID(Long billAccountID) { this.billAccountID = billAccountID; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public Long getBillOwnerID() { return this.billOwnerID; } public void setBillOwnerID(Long billOwnerID) { this.billOwnerID = billOwnerID; } public String getBillOwnerName() { return this.billOwnerName; } public void setBillOwnerName(String billOwnerName) { this.billOwnerName = billOwnerName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductDetailCode() { return this.productDetailCode; } public void setProductDetailCode(String productDetailCode) { this.productDetailCode = productDetailCode; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public String getInstanceConfig() { return this.instanceConfig; } public void setInstanceConfig(String instanceConfig) { this.instanceConfig = instanceConfig; } public String getReferFrOwnerID() { return this.referFrOwnerID; } public void setReferFrOwnerID(String referFrOwnerID) { this.referFrOwnerID = referFrOwnerID; } public String getReferFrInstanceID() { return this.referFrInstanceID; } public void setReferFrInstanceID(String referFrInstanceID) { this.referFrInstanceID = referFrInstanceID; } public String getReferFrProductDetailCode() { return this.referFrProductDetailCode; } public void setReferFrProductDetailCode(String referFrProductDetailCode) { this.referFrProductDetailCode = referFrProductDetailCode; } public Double getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Double pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Double getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Double invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Double getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(Double roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public Double getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Double pretaxAmount) { this.pretaxAmount = pretaxAmount; } public Double getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Double deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public Double getCurrentAmortizationPretaxGrossAmount() { return this.currentAmortizationPretaxGrossAmount; } public void setCurrentAmortizationPretaxGrossAmount(Double currentAmortizationPretaxGrossAmount) { this.currentAmortizationPretaxGrossAmount = currentAmortizationPretaxGrossAmount; } public Double getCurrentAmortizationInvoiceDiscount() { return this.currentAmortizationInvoiceDiscount; } public void setCurrentAmortizationInvoiceDiscount(Double currentAmortizationInvoiceDiscount) { this.currentAmortizationInvoiceDiscount = currentAmortizationInvoiceDiscount; } public Double getCurrentAmortizationRoundDownDiscount() { return this.currentAmortizationRoundDownDiscount; } public void setCurrentAmortizationRoundDownDiscount(Double currentAmortizationRoundDownDiscount) { this.currentAmortizationRoundDownDiscount = currentAmortizationRoundDownDiscount; } public Double getCurrentAmortizationPretaxAmount() { return this.currentAmortizationPretaxAmount; } public void setCurrentAmortizationPretaxAmount(Double currentAmortizationPretaxAmount) { this.currentAmortizationPretaxAmount = currentAmortizationPretaxAmount; } public Double getCurrentAmortizationDeductedByCoupons() { return this.currentAmortizationDeductedByCoupons; } public void setCurrentAmortizationDeductedByCoupons(Double currentAmortizationDeductedByCoupons) { this.currentAmortizationDeductedByCoupons = currentAmortizationDeductedByCoupons; } public Double getUnusedAmortizationPretaxGrossAmount() { return this.unusedAmortizationPretaxGrossAmount; } public void setUnusedAmortizationPretaxGrossAmount(Double unusedAmortizationPretaxGrossAmount) { this.unusedAmortizationPretaxGrossAmount = unusedAmortizationPretaxGrossAmount; } public Double getUnusedAmortizationInvoiceDiscount() { return this.unusedAmortizationInvoiceDiscount; } public void setUnusedAmortizationInvoiceDiscount(Double unusedAmortizationInvoiceDiscount) { this.unusedAmortizationInvoiceDiscount = unusedAmortizationInvoiceDiscount; } public Double getUnusedAmortizationRoundDownDiscount() { return this.unusedAmortizationRoundDownDiscount; } public void setUnusedAmortizationRoundDownDiscount(Double unusedAmortizationRoundDownDiscount) { this.unusedAmortizationRoundDownDiscount = unusedAmortizationRoundDownDiscount; } public Double getUnusedAmortizationPretaxAmount() { return this.unusedAmortizationPretaxAmount; } public void setUnusedAmortizationPretaxAmount(Double unusedAmortizationPretaxAmount) { this.unusedAmortizationPretaxAmount = unusedAmortizationPretaxAmount; } public Double getUnusedAmortizationDeductedByCoupons() { return this.unusedAmortizationDeductedByCoupons; } public void setUnusedAmortizationDeductedByCoupons(Double unusedAmortizationDeductedByCoupons) { this.unusedAmortizationDeductedByCoupons = unusedAmortizationDeductedByCoupons; } } } @Override public DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponse getInstance(UnmarshallerContext context) { return DescribeInstanceDeductAmortizedCostByAmortizationPeriodResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribePricingModuleRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribePricingModuleRequest extends RpcAcsRequest<DescribePricingModuleResponse> { private String productCode; private String subscriptionType; private Long ownerId; private String productType; public DescribePricingModuleRequest() { super("BssOpenApi", "2017-12-14", "DescribePricingModule", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putQueryParameter("SubscriptionType", subscriptionType); } } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; if(ownerId != null){ putQueryParameter("OwnerId", ownerId.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } @Override public Class<DescribePricingModuleResponse> getResponseClass() { return DescribePricingModuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribePricingModuleResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribePricingModuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePricingModuleResponse extends AcsResponse { private String code; private String message; 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 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<Module> moduleList; private List<Attribute> attributeList; public List<Module> getModuleList() { return this.moduleList; } public void setModuleList(List<Module> moduleList) { this.moduleList = moduleList; } public List<Attribute> getAttributeList() { return this.attributeList; } public void setAttributeList(List<Attribute> attributeList) { this.attributeList = attributeList; } public static class Module { private String moduleName; private String priceType; private String currency; private String moduleCode; private List<String> configList; public String getModuleName() { return this.moduleName; } public void setModuleName(String moduleName) { this.moduleName = moduleName; } public String getPriceType() { return this.priceType; } public void setPriceType(String priceType) { this.priceType = priceType; } public String getCurrency() { return this.currency; } public void setCurrency(String currency) { this.currency = currency; } public String getModuleCode() { return this.moduleCode; } public void setModuleCode(String moduleCode) { this.moduleCode = moduleCode; } public List<String> getConfigList() { return this.configList; } public void setConfigList(List<String> configList) { this.configList = configList; } } public static class Attribute { private String code; private String name; private String unit; private List<AttributeValue> values; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUnit() { return this.unit; } public void setUnit(String unit) { this.unit = unit; } public List<AttributeValue> getValues() { return this.values; } public void setValues(List<AttributeValue> values) { this.values = values; } public static class AttributeValue { private String type; private String value; private String remark; private String name; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } @Override public DescribePricingModuleResponse getInstance(UnmarshallerContext context) { return DescribePricingModuleResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeProductAmortizedCostByAmortizationPeriodRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeProductAmortizedCostByAmortizationPeriodRequest extends RpcAcsRequest<DescribeProductAmortizedCostByAmortizationPeriodResponse> { private String productDetail; private String productCode; private List<String> billOwnerIdLists; private String subscriptionType; private String billingCycle; private String costUnitCode; private List<String> consumePeriodFilters; private String nextToken; private List<String> billUserIdLists; private Integer maxResults; public DescribeProductAmortizedCostByAmortizationPeriodRequest() { super("BssOpenApi", "2017-12-14", "DescribeProductAmortizedCostByAmortizationPeriod", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; if(productDetail != null){ putBodyParameter("ProductDetail", productDetail); } } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putBodyParameter("ProductCode", productCode); } } public List<String> getBillOwnerIdLists() { return this.billOwnerIdLists; } public void setBillOwnerIdLists(List<String> billOwnerIdLists) { this.billOwnerIdLists = billOwnerIdLists; if (billOwnerIdLists != null) { for (int i = 0; i < billOwnerIdLists.size(); i++) { putBodyParameter("BillOwnerIdList." + (i + 1) , billOwnerIdLists.get(i)); } } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putBodyParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putBodyParameter("BillingCycle", billingCycle); } } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; if(costUnitCode != null){ putBodyParameter("CostUnitCode", costUnitCode); } } public List<String> getConsumePeriodFilters() { return this.consumePeriodFilters; } public void setConsumePeriodFilters(List<String> consumePeriodFilters) { this.consumePeriodFilters = consumePeriodFilters; if (consumePeriodFilters != null) { for (int i = 0; i < consumePeriodFilters.size(); i++) { putBodyParameter("ConsumePeriodFilter." + (i + 1) , consumePeriodFilters.get(i)); } } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putBodyParameter("NextToken", nextToken); } } public List<String> getBillUserIdLists() { return this.billUserIdLists; } public void setBillUserIdLists(List<String> billUserIdLists) { this.billUserIdLists = billUserIdLists; if (billUserIdLists != null) { for (int i = 0; i < billUserIdLists.size(); i++) { putBodyParameter("BillUserIdList." + (i + 1) , billUserIdLists.get(i)); } } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putBodyParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeProductAmortizedCostByAmortizationPeriodResponse> getResponseClass() { return DescribeProductAmortizedCostByAmortizationPeriodResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeProductAmortizedCostByAmortizationPeriodResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeProductAmortizedCostByAmortizationPeriodResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeProductAmortizedCostByAmortizationPeriodResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Data data; 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 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private String accountID; private String accountName; private Integer maxResults; private Integer totalCount; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String consumePeriod; private String amortizationStatus; private String amortizationPeriod; private Long billAccountID; private String billAccountName; private Long billOwnerID; private String billOwnerName; private String productCode; private String productName; private String productDetailCode; private String productDetail; private String bizType; private String subscriptionType; private Double pretaxGrossAmount; private Double invoiceDiscount; private Double roundDownDiscount; private Double pretaxAmount; private Double deductedByCashCoupons; private Double deductedByCoupons; private Double deductedByPrepaidCard; private Double expenditureAmount; private Double previouslyAmortizedPretaxGrossAmount; private Double previouslyAmortizedInvoiceDiscount; private Double previouslyAmortizedRoundDownDiscount; private Double previouslyAmortizedPretaxAmount; private Double previouslyAmortizedDeductedByCashCoupons; private Double previouslyAmortizedDeductedByCoupons; private Double previouslyAmortizedDeductedByPrepaidCard; private Double previouslyAmortizedExpenditureAmount; private Double currentAmortizationPretaxGrossAmount; private Double currentAmortizationInvoiceDiscount; private Double currentAmortizationRoundDownDiscount; private Double currentAmortizationPretaxAmount; private Double currentAmortizationDeductedByCashCoupons; private Double currentAmortizationDeductedByCoupons; private Double currentAmortizationDeductedByPrepaidCard; private Double currentAmortizationExpenditureAmount; private Double remainingAmortizationPretaxGrossAmount; private Double remainingAmortizationInvoiceDiscount; private Double remainingAmortizationRoundDownDiscount; private Double remainingAmortizationPretaxAmount; private Double remainingAmortizationDeductedByCashCoupons; private Double remainingAmortizationDeductedByCoupons; private Double remainingAmortizationDeductedByPrepaidCard; private Double remainingAmortizationExpenditureAmount; public String getConsumePeriod() { return this.consumePeriod; } public void setConsumePeriod(String consumePeriod) { this.consumePeriod = consumePeriod; } public String getAmortizationStatus() { return this.amortizationStatus; } public void setAmortizationStatus(String amortizationStatus) { this.amortizationStatus = amortizationStatus; } public String getAmortizationPeriod() { return this.amortizationPeriod; } public void setAmortizationPeriod(String amortizationPeriod) { this.amortizationPeriod = amortizationPeriod; } public Long getBillAccountID() { return this.billAccountID; } public void setBillAccountID(Long billAccountID) { this.billAccountID = billAccountID; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public Long getBillOwnerID() { return this.billOwnerID; } public void setBillOwnerID(Long billOwnerID) { this.billOwnerID = billOwnerID; } public String getBillOwnerName() { return this.billOwnerName; } public void setBillOwnerName(String billOwnerName) { this.billOwnerName = billOwnerName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductDetailCode() { return this.productDetailCode; } public void setProductDetailCode(String productDetailCode) { this.productDetailCode = productDetailCode; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Double getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Double pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Double getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Double invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Double getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(Double roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public Double getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Double pretaxAmount) { this.pretaxAmount = pretaxAmount; } public Double getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Double deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public Double getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Double deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public Double getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Double deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public Double getExpenditureAmount() { return this.expenditureAmount; } public void setExpenditureAmount(Double expenditureAmount) { this.expenditureAmount = expenditureAmount; } public Double getPreviouslyAmortizedPretaxGrossAmount() { return this.previouslyAmortizedPretaxGrossAmount; } public void setPreviouslyAmortizedPretaxGrossAmount(Double previouslyAmortizedPretaxGrossAmount) { this.previouslyAmortizedPretaxGrossAmount = previouslyAmortizedPretaxGrossAmount; } public Double getPreviouslyAmortizedInvoiceDiscount() { return this.previouslyAmortizedInvoiceDiscount; } public void setPreviouslyAmortizedInvoiceDiscount(Double previouslyAmortizedInvoiceDiscount) { this.previouslyAmortizedInvoiceDiscount = previouslyAmortizedInvoiceDiscount; } public Double getPreviouslyAmortizedRoundDownDiscount() { return this.previouslyAmortizedRoundDownDiscount; } public void setPreviouslyAmortizedRoundDownDiscount(Double previouslyAmortizedRoundDownDiscount) { this.previouslyAmortizedRoundDownDiscount = previouslyAmortizedRoundDownDiscount; } public Double getPreviouslyAmortizedPretaxAmount() { return this.previouslyAmortizedPretaxAmount; } public void setPreviouslyAmortizedPretaxAmount(Double previouslyAmortizedPretaxAmount) { this.previouslyAmortizedPretaxAmount = previouslyAmortizedPretaxAmount; } public Double getPreviouslyAmortizedDeductedByCashCoupons() { return this.previouslyAmortizedDeductedByCashCoupons; } public void setPreviouslyAmortizedDeductedByCashCoupons(Double previouslyAmortizedDeductedByCashCoupons) { this.previouslyAmortizedDeductedByCashCoupons = previouslyAmortizedDeductedByCashCoupons; } public Double getPreviouslyAmortizedDeductedByCoupons() { return this.previouslyAmortizedDeductedByCoupons; } public void setPreviouslyAmortizedDeductedByCoupons(Double previouslyAmortizedDeductedByCoupons) { this.previouslyAmortizedDeductedByCoupons = previouslyAmortizedDeductedByCoupons; } public Double getPreviouslyAmortizedDeductedByPrepaidCard() { return this.previouslyAmortizedDeductedByPrepaidCard; } public void setPreviouslyAmortizedDeductedByPrepaidCard(Double previouslyAmortizedDeductedByPrepaidCard) { this.previouslyAmortizedDeductedByPrepaidCard = previouslyAmortizedDeductedByPrepaidCard; } public Double getPreviouslyAmortizedExpenditureAmount() { return this.previouslyAmortizedExpenditureAmount; } public void setPreviouslyAmortizedExpenditureAmount(Double previouslyAmortizedExpenditureAmount) { this.previouslyAmortizedExpenditureAmount = previouslyAmortizedExpenditureAmount; } public Double getCurrentAmortizationPretaxGrossAmount() { return this.currentAmortizationPretaxGrossAmount; } public void setCurrentAmortizationPretaxGrossAmount(Double currentAmortizationPretaxGrossAmount) { this.currentAmortizationPretaxGrossAmount = currentAmortizationPretaxGrossAmount; } public Double getCurrentAmortizationInvoiceDiscount() { return this.currentAmortizationInvoiceDiscount; } public void setCurrentAmortizationInvoiceDiscount(Double currentAmortizationInvoiceDiscount) { this.currentAmortizationInvoiceDiscount = currentAmortizationInvoiceDiscount; } public Double getCurrentAmortizationRoundDownDiscount() { return this.currentAmortizationRoundDownDiscount; } public void setCurrentAmortizationRoundDownDiscount(Double currentAmortizationRoundDownDiscount) { this.currentAmortizationRoundDownDiscount = currentAmortizationRoundDownDiscount; } public Double getCurrentAmortizationPretaxAmount() { return this.currentAmortizationPretaxAmount; } public void setCurrentAmortizationPretaxAmount(Double currentAmortizationPretaxAmount) { this.currentAmortizationPretaxAmount = currentAmortizationPretaxAmount; } public Double getCurrentAmortizationDeductedByCashCoupons() { return this.currentAmortizationDeductedByCashCoupons; } public void setCurrentAmortizationDeductedByCashCoupons(Double currentAmortizationDeductedByCashCoupons) { this.currentAmortizationDeductedByCashCoupons = currentAmortizationDeductedByCashCoupons; } public Double getCurrentAmortizationDeductedByCoupons() { return this.currentAmortizationDeductedByCoupons; } public void setCurrentAmortizationDeductedByCoupons(Double currentAmortizationDeductedByCoupons) { this.currentAmortizationDeductedByCoupons = currentAmortizationDeductedByCoupons; } public Double getCurrentAmortizationDeductedByPrepaidCard() { return this.currentAmortizationDeductedByPrepaidCard; } public void setCurrentAmortizationDeductedByPrepaidCard(Double currentAmortizationDeductedByPrepaidCard) { this.currentAmortizationDeductedByPrepaidCard = currentAmortizationDeductedByPrepaidCard; } public Double getCurrentAmortizationExpenditureAmount() { return this.currentAmortizationExpenditureAmount; } public void setCurrentAmortizationExpenditureAmount(Double currentAmortizationExpenditureAmount) { this.currentAmortizationExpenditureAmount = currentAmortizationExpenditureAmount; } public Double getRemainingAmortizationPretaxGrossAmount() { return this.remainingAmortizationPretaxGrossAmount; } public void setRemainingAmortizationPretaxGrossAmount(Double remainingAmortizationPretaxGrossAmount) { this.remainingAmortizationPretaxGrossAmount = remainingAmortizationPretaxGrossAmount; } public Double getRemainingAmortizationInvoiceDiscount() { return this.remainingAmortizationInvoiceDiscount; } public void setRemainingAmortizationInvoiceDiscount(Double remainingAmortizationInvoiceDiscount) { this.remainingAmortizationInvoiceDiscount = remainingAmortizationInvoiceDiscount; } public Double getRemainingAmortizationRoundDownDiscount() { return this.remainingAmortizationRoundDownDiscount; } public void setRemainingAmortizationRoundDownDiscount(Double remainingAmortizationRoundDownDiscount) { this.remainingAmortizationRoundDownDiscount = remainingAmortizationRoundDownDiscount; } public Double getRemainingAmortizationPretaxAmount() { return this.remainingAmortizationPretaxAmount; } public void setRemainingAmortizationPretaxAmount(Double remainingAmortizationPretaxAmount) { this.remainingAmortizationPretaxAmount = remainingAmortizationPretaxAmount; } public Double getRemainingAmortizationDeductedByCashCoupons() { return this.remainingAmortizationDeductedByCashCoupons; } public void setRemainingAmortizationDeductedByCashCoupons(Double remainingAmortizationDeductedByCashCoupons) { this.remainingAmortizationDeductedByCashCoupons = remainingAmortizationDeductedByCashCoupons; } public Double getRemainingAmortizationDeductedByCoupons() { return this.remainingAmortizationDeductedByCoupons; } public void setRemainingAmortizationDeductedByCoupons(Double remainingAmortizationDeductedByCoupons) { this.remainingAmortizationDeductedByCoupons = remainingAmortizationDeductedByCoupons; } public Double getRemainingAmortizationDeductedByPrepaidCard() { return this.remainingAmortizationDeductedByPrepaidCard; } public void setRemainingAmortizationDeductedByPrepaidCard(Double remainingAmortizationDeductedByPrepaidCard) { this.remainingAmortizationDeductedByPrepaidCard = remainingAmortizationDeductedByPrepaidCard; } public Double getRemainingAmortizationExpenditureAmount() { return this.remainingAmortizationExpenditureAmount; } public void setRemainingAmortizationExpenditureAmount(Double remainingAmortizationExpenditureAmount) { this.remainingAmortizationExpenditureAmount = remainingAmortizationExpenditureAmount; } } } @Override public DescribeProductAmortizedCostByAmortizationPeriodResponse getInstance(UnmarshallerContext context) { return DescribeProductAmortizedCostByAmortizationPeriodResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeProductAmortizedCostByConsumePeriodRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeProductAmortizedCostByConsumePeriodRequest extends RpcAcsRequest<DescribeProductAmortizedCostByConsumePeriodResponse> { private String productDetail; private String productCode; private List<String> billOwnerIdLists; private String subscriptionType; private String billingCycle; private String costUnitCode; private List<String> amortizationPeriodFilters; private String nextToken; private List<String> billUserIdLists; private Integer maxResults; public DescribeProductAmortizedCostByConsumePeriodRequest() { super("BssOpenApi", "2017-12-14", "DescribeProductAmortizedCostByConsumePeriod", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; if(productDetail != null){ putBodyParameter("ProductDetail", productDetail); } } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putBodyParameter("ProductCode", productCode); } } public List<String> getBillOwnerIdLists() { return this.billOwnerIdLists; } public void setBillOwnerIdLists(List<String> billOwnerIdLists) { this.billOwnerIdLists = billOwnerIdLists; if (billOwnerIdLists != null) { for (int i = 0; i < billOwnerIdLists.size(); i++) { putBodyParameter("BillOwnerIdList." + (i + 1) , billOwnerIdLists.get(i)); } } } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; if(subscriptionType != null){ putBodyParameter("SubscriptionType", subscriptionType); } } public String getBillingCycle() { return this.billingCycle; } public void setBillingCycle(String billingCycle) { this.billingCycle = billingCycle; if(billingCycle != null){ putBodyParameter("BillingCycle", billingCycle); } } public String getCostUnitCode() { return this.costUnitCode; } public void setCostUnitCode(String costUnitCode) { this.costUnitCode = costUnitCode; if(costUnitCode != null){ putBodyParameter("CostUnitCode", costUnitCode); } } public List<String> getAmortizationPeriodFilters() { return this.amortizationPeriodFilters; } public void setAmortizationPeriodFilters(List<String> amortizationPeriodFilters) { this.amortizationPeriodFilters = amortizationPeriodFilters; if (amortizationPeriodFilters != null) { for (int i = 0; i < amortizationPeriodFilters.size(); i++) { putBodyParameter("AmortizationPeriodFilter." + (i + 1) , amortizationPeriodFilters.get(i)); } } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putBodyParameter("NextToken", nextToken); } } public List<String> getBillUserIdLists() { return this.billUserIdLists; } public void setBillUserIdLists(List<String> billUserIdLists) { this.billUserIdLists = billUserIdLists; if (billUserIdLists != null) { for (int i = 0; i < billUserIdLists.size(); i++) { putBodyParameter("BillUserIdList." + (i + 1) , billUserIdLists.get(i)); } } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putBodyParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeProductAmortizedCostByConsumePeriodResponse> getResponseClass() { return DescribeProductAmortizedCostByConsumePeriodResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeProductAmortizedCostByConsumePeriodResponse.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.bssopenapi.model.v20171214; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.bssopenapi.transform.v20171214.DescribeProductAmortizedCostByConsumePeriodResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeProductAmortizedCostByConsumePeriodResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Data data; 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 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String nextToken; private String accountID; private String accountName; private Integer maxResults; private Integer totalCount; private List<Item> items; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getAccountID() { return this.accountID; } public void setAccountID(String accountID) { this.accountID = accountID; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Item> getItems() { return this.items; } public void setItems(List<Item> items) { this.items = items; } public static class Item { private String consumePeriod; private String amortizationStatus; private String amortizationPeriod; private Long billAccountID; private String billAccountName; private Long billOwnerID; private String billOwnerName; private String productCode; private String productName; private String productDetailCode; private String productDetail; private String bizType; private String subscriptionType; private Double pretaxGrossAmount; private Double invoiceDiscount; private Double roundDownDiscount; private Double pretaxAmount; private Double deductedByCashCoupons; private Double deductedByCoupons; private Double deductedByPrepaidCard; private Double expenditureAmount; private Double previouslyAmortizedPretaxGrossAmount; private Double previouslyAmortizedInvoiceDiscount; private Double previouslyAmortizedRoundDownDiscount; private Double previouslyAmortizedPretaxAmount; private Double previouslyAmortizedDeductedByCashCoupons; private Double previouslyAmortizedDeductedByCoupons; private Double previouslyAmortizedDeductedByPrepaidCard; private Double previouslyAmortizedExpenditureAmount; private Double currentAmortizationPretaxGrossAmount; private Double currentAmortizationInvoiceDiscount; private Double currentAmortizationRoundDownDiscount; private Double currentAmortizationPretaxAmount; private Double currentAmortizationDeductedByCashCoupons; private Double currentAmortizationDeductedByCoupons; private Double currentAmortizationDeductedByPrepaidCard; private Double currentAmortizationExpenditureAmount; private Double remainingAmortizationPretaxGrossAmount; private Double remainingAmortizationInvoiceDiscount; private Double remainingAmortizationRoundDownDiscount; private Double remainingAmortizationPretaxAmount; private Double remainingAmortizationDeductedByCashCoupons; private Double remainingAmortizationDeductedByCoupons; private Double remainingAmortizationDeductedByPrepaidCard; private Double remainingAmortizationExpenditureAmount; public String getConsumePeriod() { return this.consumePeriod; } public void setConsumePeriod(String consumePeriod) { this.consumePeriod = consumePeriod; } public String getAmortizationStatus() { return this.amortizationStatus; } public void setAmortizationStatus(String amortizationStatus) { this.amortizationStatus = amortizationStatus; } public String getAmortizationPeriod() { return this.amortizationPeriod; } public void setAmortizationPeriod(String amortizationPeriod) { this.amortizationPeriod = amortizationPeriod; } public Long getBillAccountID() { return this.billAccountID; } public void setBillAccountID(Long billAccountID) { this.billAccountID = billAccountID; } public String getBillAccountName() { return this.billAccountName; } public void setBillAccountName(String billAccountName) { this.billAccountName = billAccountName; } public Long getBillOwnerID() { return this.billOwnerID; } public void setBillOwnerID(Long billOwnerID) { this.billOwnerID = billOwnerID; } public String getBillOwnerName() { return this.billOwnerName; } public void setBillOwnerName(String billOwnerName) { this.billOwnerName = billOwnerName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductDetailCode() { return this.productDetailCode; } public void setProductDetailCode(String productDetailCode) { this.productDetailCode = productDetailCode; } public String getProductDetail() { return this.productDetail; } public void setProductDetail(String productDetail) { this.productDetail = productDetail; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } public String getSubscriptionType() { return this.subscriptionType; } public void setSubscriptionType(String subscriptionType) { this.subscriptionType = subscriptionType; } public Double getPretaxGrossAmount() { return this.pretaxGrossAmount; } public void setPretaxGrossAmount(Double pretaxGrossAmount) { this.pretaxGrossAmount = pretaxGrossAmount; } public Double getInvoiceDiscount() { return this.invoiceDiscount; } public void setInvoiceDiscount(Double invoiceDiscount) { this.invoiceDiscount = invoiceDiscount; } public Double getRoundDownDiscount() { return this.roundDownDiscount; } public void setRoundDownDiscount(Double roundDownDiscount) { this.roundDownDiscount = roundDownDiscount; } public Double getPretaxAmount() { return this.pretaxAmount; } public void setPretaxAmount(Double pretaxAmount) { this.pretaxAmount = pretaxAmount; } public Double getDeductedByCashCoupons() { return this.deductedByCashCoupons; } public void setDeductedByCashCoupons(Double deductedByCashCoupons) { this.deductedByCashCoupons = deductedByCashCoupons; } public Double getDeductedByCoupons() { return this.deductedByCoupons; } public void setDeductedByCoupons(Double deductedByCoupons) { this.deductedByCoupons = deductedByCoupons; } public Double getDeductedByPrepaidCard() { return this.deductedByPrepaidCard; } public void setDeductedByPrepaidCard(Double deductedByPrepaidCard) { this.deductedByPrepaidCard = deductedByPrepaidCard; } public Double getExpenditureAmount() { return this.expenditureAmount; } public void setExpenditureAmount(Double expenditureAmount) { this.expenditureAmount = expenditureAmount; } public Double getPreviouslyAmortizedPretaxGrossAmount() { return this.previouslyAmortizedPretaxGrossAmount; } public void setPreviouslyAmortizedPretaxGrossAmount(Double previouslyAmortizedPretaxGrossAmount) { this.previouslyAmortizedPretaxGrossAmount = previouslyAmortizedPretaxGrossAmount; } public Double getPreviouslyAmortizedInvoiceDiscount() { return this.previouslyAmortizedInvoiceDiscount; } public void setPreviouslyAmortizedInvoiceDiscount(Double previouslyAmortizedInvoiceDiscount) { this.previouslyAmortizedInvoiceDiscount = previouslyAmortizedInvoiceDiscount; } public Double getPreviouslyAmortizedRoundDownDiscount() { return this.previouslyAmortizedRoundDownDiscount; } public void setPreviouslyAmortizedRoundDownDiscount(Double previouslyAmortizedRoundDownDiscount) { this.previouslyAmortizedRoundDownDiscount = previouslyAmortizedRoundDownDiscount; } public Double getPreviouslyAmortizedPretaxAmount() { return this.previouslyAmortizedPretaxAmount; } public void setPreviouslyAmortizedPretaxAmount(Double previouslyAmortizedPretaxAmount) { this.previouslyAmortizedPretaxAmount = previouslyAmortizedPretaxAmount; } public Double getPreviouslyAmortizedDeductedByCashCoupons() { return this.previouslyAmortizedDeductedByCashCoupons; } public void setPreviouslyAmortizedDeductedByCashCoupons(Double previouslyAmortizedDeductedByCashCoupons) { this.previouslyAmortizedDeductedByCashCoupons = previouslyAmortizedDeductedByCashCoupons; } public Double getPreviouslyAmortizedDeductedByCoupons() { return this.previouslyAmortizedDeductedByCoupons; } public void setPreviouslyAmortizedDeductedByCoupons(Double previouslyAmortizedDeductedByCoupons) { this.previouslyAmortizedDeductedByCoupons = previouslyAmortizedDeductedByCoupons; } public Double getPreviouslyAmortizedDeductedByPrepaidCard() { return this.previouslyAmortizedDeductedByPrepaidCard; } public void setPreviouslyAmortizedDeductedByPrepaidCard(Double previouslyAmortizedDeductedByPrepaidCard) { this.previouslyAmortizedDeductedByPrepaidCard = previouslyAmortizedDeductedByPrepaidCard; } public Double getPreviouslyAmortizedExpenditureAmount() { return this.previouslyAmortizedExpenditureAmount; } public void setPreviouslyAmortizedExpenditureAmount(Double previouslyAmortizedExpenditureAmount) { this.previouslyAmortizedExpenditureAmount = previouslyAmortizedExpenditureAmount; } public Double getCurrentAmortizationPretaxGrossAmount() { return this.currentAmortizationPretaxGrossAmount; } public void setCurrentAmortizationPretaxGrossAmount(Double currentAmortizationPretaxGrossAmount) { this.currentAmortizationPretaxGrossAmount = currentAmortizationPretaxGrossAmount; } public Double getCurrentAmortizationInvoiceDiscount() { return this.currentAmortizationInvoiceDiscount; } public void setCurrentAmortizationInvoiceDiscount(Double currentAmortizationInvoiceDiscount) { this.currentAmortizationInvoiceDiscount = currentAmortizationInvoiceDiscount; } public Double getCurrentAmortizationRoundDownDiscount() { return this.currentAmortizationRoundDownDiscount; } public void setCurrentAmortizationRoundDownDiscount(Double currentAmortizationRoundDownDiscount) { this.currentAmortizationRoundDownDiscount = currentAmortizationRoundDownDiscount; } public Double getCurrentAmortizationPretaxAmount() { return this.currentAmortizationPretaxAmount; } public void setCurrentAmortizationPretaxAmount(Double currentAmortizationPretaxAmount) { this.currentAmortizationPretaxAmount = currentAmortizationPretaxAmount; } public Double getCurrentAmortizationDeductedByCashCoupons() { return this.currentAmortizationDeductedByCashCoupons; } public void setCurrentAmortizationDeductedByCashCoupons(Double currentAmortizationDeductedByCashCoupons) { this.currentAmortizationDeductedByCashCoupons = currentAmortizationDeductedByCashCoupons; } public Double getCurrentAmortizationDeductedByCoupons() { return this.currentAmortizationDeductedByCoupons; } public void setCurrentAmortizationDeductedByCoupons(Double currentAmortizationDeductedByCoupons) { this.currentAmortizationDeductedByCoupons = currentAmortizationDeductedByCoupons; } public Double getCurrentAmortizationDeductedByPrepaidCard() { return this.currentAmortizationDeductedByPrepaidCard; } public void setCurrentAmortizationDeductedByPrepaidCard(Double currentAmortizationDeductedByPrepaidCard) { this.currentAmortizationDeductedByPrepaidCard = currentAmortizationDeductedByPrepaidCard; } public Double getCurrentAmortizationExpenditureAmount() { return this.currentAmortizationExpenditureAmount; } public void setCurrentAmortizationExpenditureAmount(Double currentAmortizationExpenditureAmount) { this.currentAmortizationExpenditureAmount = currentAmortizationExpenditureAmount; } public Double getRemainingAmortizationPretaxGrossAmount() { return this.remainingAmortizationPretaxGrossAmount; } public void setRemainingAmortizationPretaxGrossAmount(Double remainingAmortizationPretaxGrossAmount) { this.remainingAmortizationPretaxGrossAmount = remainingAmortizationPretaxGrossAmount; } public Double getRemainingAmortizationInvoiceDiscount() { return this.remainingAmortizationInvoiceDiscount; } public void setRemainingAmortizationInvoiceDiscount(Double remainingAmortizationInvoiceDiscount) { this.remainingAmortizationInvoiceDiscount = remainingAmortizationInvoiceDiscount; } public Double getRemainingAmortizationRoundDownDiscount() { return this.remainingAmortizationRoundDownDiscount; } public void setRemainingAmortizationRoundDownDiscount(Double remainingAmortizationRoundDownDiscount) { this.remainingAmortizationRoundDownDiscount = remainingAmortizationRoundDownDiscount; } public Double getRemainingAmortizationPretaxAmount() { return this.remainingAmortizationPretaxAmount; } public void setRemainingAmortizationPretaxAmount(Double remainingAmortizationPretaxAmount) { this.remainingAmortizationPretaxAmount = remainingAmortizationPretaxAmount; } public Double getRemainingAmortizationDeductedByCashCoupons() { return this.remainingAmortizationDeductedByCashCoupons; } public void setRemainingAmortizationDeductedByCashCoupons(Double remainingAmortizationDeductedByCashCoupons) { this.remainingAmortizationDeductedByCashCoupons = remainingAmortizationDeductedByCashCoupons; } public Double getRemainingAmortizationDeductedByCoupons() { return this.remainingAmortizationDeductedByCoupons; } public void setRemainingAmortizationDeductedByCoupons(Double remainingAmortizationDeductedByCoupons) { this.remainingAmortizationDeductedByCoupons = remainingAmortizationDeductedByCoupons; } public Double getRemainingAmortizationDeductedByPrepaidCard() { return this.remainingAmortizationDeductedByPrepaidCard; } public void setRemainingAmortizationDeductedByPrepaidCard(Double remainingAmortizationDeductedByPrepaidCard) { this.remainingAmortizationDeductedByPrepaidCard = remainingAmortizationDeductedByPrepaidCard; } public Double getRemainingAmortizationExpenditureAmount() { return this.remainingAmortizationExpenditureAmount; } public void setRemainingAmortizationExpenditureAmount(Double remainingAmortizationExpenditureAmount) { this.remainingAmortizationExpenditureAmount = remainingAmortizationExpenditureAmount; } } } @Override public DescribeProductAmortizedCostByConsumePeriodResponse getInstance(UnmarshallerContext context) { return DescribeProductAmortizedCostByConsumePeriodResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model
java-sources/com/aliyun/aliyun-java-sdk-bssopenapi/1.8.13/com/aliyuncs/bssopenapi/model/v20171214/DescribeResourceCoverageDetailRequest.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.bssopenapi.model.v20171214; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.bssopenapi.Endpoint; /** * @author auto create * @version */ public class DescribeResourceCoverageDetailRequest extends RpcAcsRequest<DescribeResourceCoverageDetailResponse> { private String periodType; private Long billOwnerId; private String resourceType; private String startPeriod; private String endPeriod; private String nextToken; private Integer maxResults; public DescribeResourceCoverageDetailRequest() { super("BssOpenApi", "2017-12-14", "DescribeResourceCoverageDetail", "bssopenapi"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPeriodType() { return this.periodType; } public void setPeriodType(String periodType) { this.periodType = periodType; if(periodType != null){ putQueryParameter("PeriodType", periodType); } } public Long getBillOwnerId() { return this.billOwnerId; } public void setBillOwnerId(Long billOwnerId) { this.billOwnerId = billOwnerId; if(billOwnerId != null){ putQueryParameter("BillOwnerId", billOwnerId.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getStartPeriod() { return this.startPeriod; } public void setStartPeriod(String startPeriod) { this.startPeriod = startPeriod; if(startPeriod != null){ putQueryParameter("StartPeriod", startPeriod); } } public String getEndPeriod() { return this.endPeriod; } public void setEndPeriod(String endPeriod) { this.endPeriod = endPeriod; if(endPeriod != null){ putQueryParameter("EndPeriod", endPeriod); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } @Override public Class<DescribeResourceCoverageDetailResponse> getResponseClass() { return DescribeResourceCoverageDetailResponse.class; } }