index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccs/1.1.0/com/aliyuncs/ccs/transform
|
java-sources/com/aliyun/aliyun-java-sdk-ccs/1.1.0/com/aliyuncs/ccs/transform/v20171001/QueryTicketResponseUnmarshaller.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.ccs.transform.v20171001;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.ccs.model.v20171001.QueryTicketResponse;
import com.aliyuncs.ccs.model.v20171001.QueryTicketResponse.Ticket;
import java.util.Map;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryTicketResponseUnmarshaller {
public static QueryTicketResponse unmarshall(QueryTicketResponse queryTicketResponse, UnmarshallerContext context) {
queryTicketResponse.setRequestId(context.stringValue("QueryTicketResponse.RequestId"));
queryTicketResponse.setPageNum(context.integerValue("QueryTicketResponse.PageNum"));
queryTicketResponse.setPageSize(context.integerValue("QueryTicketResponse.PageSize"));
queryTicketResponse.setTotalCount(context.longValue("QueryTicketResponse.TotalCount"));
List<Ticket> tickets = new ArrayList<Ticket>();
for (int i = 0; i < context.lengthValue("QueryTicketResponse.Tickets.Length"); i++) {
Ticket ticket = new Ticket();
ticket.setId(context.stringValue("QueryTicketResponse.Tickets["+ i +"].Id"));
ticket.setType(context.stringValue("QueryTicketResponse.Tickets["+ i +"].Type"));
ticket.setStage(context.stringValue("QueryTicketResponse.Tickets["+ i +"].Stage"));
ticket.setDescription(context.stringValue("QueryTicketResponse.Tickets["+ i +"].Description"));
ticket.setCreatorId(context.stringValue("QueryTicketResponse.Tickets["+ i +"].CreatorId"));
ticket.setCreateTime(context.stringValue("QueryTicketResponse.Tickets["+ i +"].CreateTime"));
ticket.setCustomFields(context.stringValue("QueryTicketResponse.Tickets["+ i +"].CustomFields"));
tickets.add(ticket);
}
queryTicketResponse.setTickets(tickets);
return queryTicketResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/AddProductImageRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 AddProductImageRequest extends RoaAcsRequest<AddProductImageResponse> {
private String country;
private String productId;
@SerializedName("productImageList")
private List<ProductImageList> productImageList;
private String productName;
public AddProductImageRequest() {
super("cd", "2021-12-7", "AddProductImage");
setUriPattern("/AddProductImage");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getProductId() {
return this.productId;
}
public void setProductId(String productId) {
this.productId = productId;
if(productId != null){
putBodyParameter("ProductId", productId);
}
}
public List<ProductImageList> getProductImageList() {
return this.productImageList;
}
public void setProductImageList(List<ProductImageList> productImageList) {
this.productImageList = productImageList;
if (productImageList != null) {
putBodyParameter("ProductImageList" , new Gson().toJson(productImageList));
}
}
public String getProductName() {
return this.productName;
}
public void setProductName(String productName) {
this.productName = productName;
if(productName != null){
putBodyParameter("ProductName", productName);
}
}
public static class ProductImageList {
@SerializedName("ProductImageUrl")
private String productImageUrl;
@SerializedName("ProductImageType")
private String productImageType;
@SerializedName("ProductImageLabels")
private List<String> productImageLabels;
@SerializedName("ProductImageCutout")
private Boolean productImageCutout;
@SerializedName("ProductImageId")
private String productImageId;
public String getProductImageUrl() {
return this.productImageUrl;
}
public void setProductImageUrl(String productImageUrl) {
this.productImageUrl = productImageUrl;
}
public String getProductImageType() {
return this.productImageType;
}
public void setProductImageType(String productImageType) {
this.productImageType = productImageType;
}
public List<String> getProductImageLabels() {
return this.productImageLabels;
}
public void setProductImageLabels(List<String> productImageLabels) {
this.productImageLabels = productImageLabels;
}
public Boolean getProductImageCutout() {
return this.productImageCutout;
}
public void setProductImageCutout(Boolean productImageCutout) {
this.productImageCutout = productImageCutout;
}
public String getProductImageId() {
return this.productImageId;
}
public void setProductImageId(String productImageId) {
this.productImageId = productImageId;
}
}
@Override
public Class<AddProductImageResponse> getResponseClass() {
return AddProductImageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/AddProductImageResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.AddProductImageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddProductImageResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public AddProductImageResponse getInstance(UnmarshallerContext context) {
return AddProductImageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/AddShopToGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 AddShopToGroupRequest extends RoaAcsRequest<AddShopToGroupResponse> {
private String country;
private String shopGroupId;
@SerializedName("shopIdList")
private List<String> shopIdList;
public AddShopToGroupRequest() {
super("cd", "2021-12-7", "AddShopToGroup");
setUriPattern("/AddShopToGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
@Override
public Class<AddShopToGroupResponse> getResponseClass() {
return AddShopToGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/AddShopToGroupResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.AddShopToGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddShopToGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public AddShopToGroupResponse getInstance(UnmarshallerContext context) {
return AddShopToGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/AddShopsToGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 AddShopsToGroupRequest extends RoaAcsRequest<AddShopsToGroupResponse> {
private String shopGroupId;
@SerializedName("shopIdList")
private List<String> shopIdList;
public AddShopsToGroupRequest() {
super("cd", "2021-12-7", "AddShopsToGroup");
setUriPattern("/AddShopsToGroup");
setMethod(MethodType.POST);
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
@Override
public Class<AddShopsToGroupResponse> getResponseClass() {
return AddShopsToGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/AddShopsToGroupResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.AddShopsToGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddShopsToGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String shopId;
private String code;
private String message;
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
}
@Override
public AddShopsToGroupResponse getInstance(UnmarshallerContext context) {
return AddShopsToGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchCreateShopGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 BatchCreateShopGroupRequest extends RoaAcsRequest<BatchCreateShopGroupResponse> {
private String country;
@SerializedName("shopGroupList")
private List<ShopGroupList> shopGroupList;
public BatchCreateShopGroupRequest() {
super("cd", "2021-12-7", "BatchCreateShopGroup");
setUriPattern("/BatchCreateShopGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<ShopGroupList> getShopGroupList() {
return this.shopGroupList;
}
public void setShopGroupList(List<ShopGroupList> shopGroupList) {
this.shopGroupList = shopGroupList;
if (shopGroupList != null) {
putBodyParameter("ShopGroupList" , new Gson().toJson(shopGroupList));
}
}
public static class ShopGroupList {
@SerializedName("ShopGroupId")
private String shopGroupId;
@SerializedName("ShopGroupName")
private String shopGroupName;
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
}
public String getShopGroupName() {
return this.shopGroupName;
}
public void setShopGroupName(String shopGroupName) {
this.shopGroupName = shopGroupName;
}
}
@Override
public Class<BatchCreateShopGroupResponse> getResponseClass() {
return BatchCreateShopGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchCreateShopGroupResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.BatchCreateShopGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class BatchCreateShopGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String shopGroupId;
private String code;
private String message;
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
}
@Override
public BatchCreateShopGroupResponse getInstance(UnmarshallerContext context) {
return BatchCreateShopGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchCreateShopRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 BatchCreateShopRequest extends RoaAcsRequest<BatchCreateShopResponse> {
private String country;
@SerializedName("shopList")
private List<ShopList> shopList;
public BatchCreateShopRequest() {
super("cd", "2021-12-7", "BatchCreateShop");
setUriPattern("/BatchCreateShop");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<ShopList> getShopList() {
return this.shopList;
}
public void setShopList(List<ShopList> shopList) {
this.shopList = shopList;
if (shopList != null) {
putBodyParameter("ShopList" , new Gson().toJson(shopList));
}
}
public static class ShopList {
@SerializedName("BusinessStatus")
private Integer businessStatus;
@SerializedName("ShopGroupIds")
private List<String> shopGroupIds;
@SerializedName("RegionCode")
private String regionCode;
@SerializedName("WeekdaysEndTime")
private String weekdaysEndTime;
@SerializedName("Latitude")
private String latitude;
@SerializedName("Remark")
private String remark;
@SerializedName("WeekendEndTime")
private String weekendEndTime;
@SerializedName("ShopName")
private String shopName;
@SerializedName("RegionAddress")
private String regionAddress;
@SerializedName("ShopId")
private String shopId;
@SerializedName("Location")
private String location;
@SerializedName("WeekendStartTime")
private String weekendStartTime;
@SerializedName("WeekdaysStartTime")
private String weekdaysStartTime;
@SerializedName("Longitude")
private String longitude;
public Integer getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(Integer businessStatus) {
this.businessStatus = businessStatus;
}
public List<String> getShopGroupIds() {
return this.shopGroupIds;
}
public void setShopGroupIds(List<String> shopGroupIds) {
this.shopGroupIds = shopGroupIds;
}
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
public String getWeekdaysEndTime() {
return this.weekdaysEndTime;
}
public void setWeekdaysEndTime(String weekdaysEndTime) {
this.weekdaysEndTime = weekdaysEndTime;
}
public String getLatitude() {
return this.latitude;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getWeekendEndTime() {
return this.weekendEndTime;
}
public void setWeekendEndTime(String weekendEndTime) {
this.weekendEndTime = weekendEndTime;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
public String getRegionAddress() {
return this.regionAddress;
}
public void setRegionAddress(String regionAddress) {
this.regionAddress = regionAddress;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
public String getWeekendStartTime() {
return this.weekendStartTime;
}
public void setWeekendStartTime(String weekendStartTime) {
this.weekendStartTime = weekendStartTime;
}
public String getWeekdaysStartTime() {
return this.weekdaysStartTime;
}
public void setWeekdaysStartTime(String weekdaysStartTime) {
this.weekdaysStartTime = weekdaysStartTime;
}
public String getLongitude() {
return this.longitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
}
}
@Override
public Class<BatchCreateShopResponse> getResponseClass() {
return BatchCreateShopResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchCreateShopResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.BatchCreateShopResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class BatchCreateShopResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String shopId;
private String code;
private String message;
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
}
@Override
public BatchCreateShopResponse getInstance(UnmarshallerContext context) {
return BatchCreateShopResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchGetStoreTextDataRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 BatchGetStoreTextDataRequest extends RoaAcsRequest<BatchGetStoreTextDataResponse> {
private String country;
@SerializedName("storeIds")
private List<String> storeIds;
public BatchGetStoreTextDataRequest() {
super("cd", "2021-12-7", "BatchGetStoreTextData");
setUriPattern("/BatchGetStoreTextData");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("country", country);
}
}
public List<String> getStoreIds() {
return this.storeIds;
}
public void setStoreIds(List<String> storeIds) {
this.storeIds = storeIds;
if (storeIds != null) {
putBodyParameter("StoreIds" , new Gson().toJson(storeIds));
}
}
@Override
public Class<BatchGetStoreTextDataResponse> getResponseClass() {
return BatchGetStoreTextDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchGetStoreTextDataResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.BatchGetStoreTextDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class BatchGetStoreTextDataResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String storeId;
private List<Container> containers;
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public List<Container> getContainers() {
return this.containers;
}
public void setContainers(List<Container> containers) {
this.containers = containers;
}
public static class Container {
private String type;
private String title;
private Integer visible;
private List<ContainerDataItem> containerData;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public Integer getVisible() {
return this.visible;
}
public void setVisible(Integer visible) {
this.visible = visible;
}
public List<ContainerDataItem> getContainerData() {
return this.containerData;
}
public void setContainerData(List<ContainerDataItem> containerData) {
this.containerData = containerData;
}
public static class ContainerDataItem {
private String mark;
private String text;
private String subText;
private String color;
private Integer bold;
public String getMark() {
return this.mark;
}
public void setMark(String mark) {
this.mark = mark;
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public String getSubText() {
return this.subText;
}
public void setSubText(String subText) {
this.subText = subText;
}
public String getColor() {
return this.color;
}
public void setColor(String color) {
this.color = color;
}
public Integer getBold() {
return this.bold;
}
public void setBold(Integer bold) {
this.bold = bold;
}
}
}
}
@Override
public BatchGetStoreTextDataResponse getInstance(UnmarshallerContext context) {
return BatchGetStoreTextDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchUpdateStoreTextDataRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 BatchUpdateStoreTextDataRequest extends RoaAcsRequest<BatchUpdateStoreTextDataResponse> {
private String country;
@SerializedName("storeTextData")
private List<StoreTextData> storeTextData;
public BatchUpdateStoreTextDataRequest() {
super("cd", "2021-12-7", "BatchUpdateStoreTextData");
setUriPattern("/BatchUpdateStoreTextData");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("country", country);
}
}
public List<StoreTextData> getStoreTextData() {
return this.storeTextData;
}
public void setStoreTextData(List<StoreTextData> storeTextData) {
this.storeTextData = storeTextData;
if (storeTextData != null) {
putBodyParameter("StoreTextData" , new Gson().toJson(storeTextData));
}
}
public static class StoreTextData {
@SerializedName("Containers")
private List<ContainersItem> containers;
@SerializedName("StoreId")
private String storeId;
public List<ContainersItem> getContainers() {
return this.containers;
}
public void setContainers(List<ContainersItem> containers) {
this.containers = containers;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public static class ContainersItem {
@SerializedName("Visible")
private Integer visible;
@SerializedName("Type")
private String type;
@SerializedName("Title")
private String title;
@SerializedName("ContainerData")
private List<ContainerDataItem> containerData;
public Integer getVisible() {
return this.visible;
}
public void setVisible(Integer visible) {
this.visible = visible;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public List<ContainerDataItem> getContainerData() {
return this.containerData;
}
public void setContainerData(List<ContainerDataItem> containerData) {
this.containerData = containerData;
}
public static class ContainerDataItem {
@SerializedName("SubText")
private String subText;
@SerializedName("Color")
private String color;
@SerializedName("Text")
private String text;
@SerializedName("Bold")
private Integer bold;
@SerializedName("Mark")
private String mark;
public String getSubText() {
return this.subText;
}
public void setSubText(String subText) {
this.subText = subText;
}
public String getColor() {
return this.color;
}
public void setColor(String color) {
this.color = color;
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public Integer getBold() {
return this.bold;
}
public void setBold(Integer bold) {
this.bold = bold;
}
public String getMark() {
return this.mark;
}
public void setMark(String mark) {
this.mark = mark;
}
}
}
}
@Override
public Class<BatchUpdateStoreTextDataResponse> getResponseClass() {
return BatchUpdateStoreTextDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/BatchUpdateStoreTextDataResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.BatchUpdateStoreTextDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class BatchUpdateStoreTextDataResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public BatchUpdateStoreTextDataResponse getInstance(UnmarshallerContext context) {
return BatchUpdateStoreTextDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateLabelRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateLabelRequest extends RoaAcsRequest<CreateLabelResponse> {
private String country;
private String label;
private String title;
private String category;
public CreateLabelRequest() {
super("cd", "2021-12-7", "CreateLabel");
setUriPattern("/CreateLabel");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
if(label != null){
putBodyParameter("Label", label);
}
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
if(title != null){
putBodyParameter("Title", title);
}
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
if(category != null){
putBodyParameter("Category", category);
}
}
@Override
public Class<CreateLabelResponse> getResponseClass() {
return CreateLabelResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateLabelResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.CreateLabelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateLabelResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public CreateLabelResponse getInstance(UnmarshallerContext context) {
return CreateLabelResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateMenuDataRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 CreateMenuDataRequest extends RoaAcsRequest<CreateMenuDataResponse> {
private String country;
@SerializedName("shopIdList")
private List<String> shopIdList;
private String batchId;
private String type;
private Integer priority;
@SerializedName("productCombineList")
private List<ProductCombineList> productCombineList;
private String productContainerId;
private String shopGroupId;
public CreateMenuDataRequest() {
super("cd", "2021-12-7", "CreateMenuData");
setUriPattern("/CreateMenuData");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
public String getBatchId() {
return this.batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
if(batchId != null){
putBodyParameter("BatchId", batchId);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
public Integer getPriority() {
return this.priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
if(priority != null){
putBodyParameter("Priority", priority.toString());
}
}
public List<ProductCombineList> getProductCombineList() {
return this.productCombineList;
}
public void setProductCombineList(List<ProductCombineList> productCombineList) {
this.productCombineList = productCombineList;
if (productCombineList != null) {
putBodyParameter("ProductCombineList" , new Gson().toJson(productCombineList));
}
}
public String getProductContainerId() {
return this.productContainerId;
}
public void setProductContainerId(String productContainerId) {
this.productContainerId = productContainerId;
if(productContainerId != null){
putBodyParameter("ProductContainerId", productContainerId);
}
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
public static class ProductCombineList {
@SerializedName("Order")
private Integer order;
@SerializedName("Name")
private String name;
@SerializedName("EnglishName")
private String englishName;
@SerializedName("ProductItemList")
private List<ProductItemListItem> productItemList;
public Integer getOrder() {
return this.order;
}
public void setOrder(Integer order) {
this.order = order;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getEnglishName() {
return this.englishName;
}
public void setEnglishName(String englishName) {
this.englishName = englishName;
}
public List<ProductItemListItem> getProductItemList() {
return this.productItemList;
}
public void setProductItemList(List<ProductItemListItem> productItemList) {
this.productItemList = productItemList;
}
public static class ProductItemListItem {
@SerializedName("Order")
private Integer order;
@SerializedName("ProductInfo")
private ProductInfo productInfo;
public Integer getOrder() {
return this.order;
}
public void setOrder(Integer order) {
this.order = order;
}
public ProductInfo getProductInfo() {
return this.productInfo;
}
public void setProductInfo(ProductInfo productInfo) {
this.productInfo = productInfo;
}
public static class ProductInfo {
@SerializedName("ProductId")
private String productId;
@SerializedName("ChineseName")
private String chineseName;
@SerializedName("EnglishName")
private String englishName;
@SerializedName("Description")
private String description;
@SerializedName("IconText")
private String iconText;
@SerializedName("ProductType")
private String productType;
@SerializedName("Temperature")
private String temperature;
@SerializedName("OriginalPrice")
private String originalPrice;
@SerializedName("CurrentPrice")
private String currentPrice;
public String getProductId() {
return this.productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
public String getChineseName() {
return this.chineseName;
}
public void setChineseName(String chineseName) {
this.chineseName = chineseName;
}
public String getEnglishName() {
return this.englishName;
}
public void setEnglishName(String englishName) {
this.englishName = englishName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getIconText() {
return this.iconText;
}
public void setIconText(String iconText) {
this.iconText = iconText;
}
public String getProductType() {
return this.productType;
}
public void setProductType(String productType) {
this.productType = productType;
}
public String getTemperature() {
return this.temperature;
}
public void setTemperature(String temperature) {
this.temperature = temperature;
}
public String getOriginalPrice() {
return this.originalPrice;
}
public void setOriginalPrice(String originalPrice) {
this.originalPrice = originalPrice;
}
public String getCurrentPrice() {
return this.currentPrice;
}
public void setCurrentPrice(String currentPrice) {
this.currentPrice = currentPrice;
}
}
}
}
@Override
public Class<CreateMenuDataResponse> getResponseClass() {
return CreateMenuDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateMenuDataResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.CreateMenuDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateMenuDataResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public CreateMenuDataResponse getInstance(UnmarshallerContext context) {
return CreateMenuDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateShopGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 CreateShopGroupRequest extends RoaAcsRequest<CreateShopGroupResponse> {
private String country;
@SerializedName("shopGroupList")
private List<ShopGroupList> shopGroupList;
public CreateShopGroupRequest() {
super("cd", "2021-12-7", "CreateShopGroup");
setUriPattern("/CreateShopGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<ShopGroupList> getShopGroupList() {
return this.shopGroupList;
}
public void setShopGroupList(List<ShopGroupList> shopGroupList) {
this.shopGroupList = shopGroupList;
if (shopGroupList != null) {
putBodyParameter("ShopGroupList" , new Gson().toJson(shopGroupList));
}
}
public static class ShopGroupList {
@SerializedName("ShopGroupId")
private String shopGroupId;
@SerializedName("ShopGroupName")
private String shopGroupName;
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
}
public String getShopGroupName() {
return this.shopGroupName;
}
public void setShopGroupName(String shopGroupName) {
this.shopGroupName = shopGroupName;
}
}
@Override
public Class<CreateShopGroupResponse> getResponseClass() {
return CreateShopGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateShopGroupResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.CreateShopGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateShopGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<String> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getData() {
return this.data;
}
public void setData(List<String> data) {
this.data = data;
}
@Override
public CreateShopGroupResponse getInstance(UnmarshallerContext context) {
return CreateShopGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateShopRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 CreateShopRequest extends RoaAcsRequest<CreateShopResponse> {
private String country;
@SerializedName("shopList")
private List<ShopList> shopList;
public CreateShopRequest() {
super("cd", "2021-12-7", "CreateShop");
setUriPattern("/CreateShop");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<ShopList> getShopList() {
return this.shopList;
}
public void setShopList(List<ShopList> shopList) {
this.shopList = shopList;
if (shopList != null) {
putBodyParameter("ShopList" , new Gson().toJson(shopList));
}
}
public static class ShopList {
@SerializedName("BusinessStatus")
private Integer businessStatus;
@SerializedName("ShopGroupIds")
private List<String> shopGroupIds;
@SerializedName("RegionCode")
private String regionCode;
@SerializedName("WeekdaysEndTime")
private String weekdaysEndTime;
@SerializedName("Latitude")
private String latitude;
@SerializedName("Remark")
private String remark;
@SerializedName("WeekendEndTime")
private String weekendEndTime;
@SerializedName("ShopName")
private String shopName;
@SerializedName("RegionAddress")
private String regionAddress;
@SerializedName("ShopId")
private String shopId;
@SerializedName("Location")
private String location;
@SerializedName("WeekendStartTime")
private String weekendStartTime;
@SerializedName("WeekdaysStartTime")
private String weekdaysStartTime;
@SerializedName("Longitude")
private String longitude;
public Integer getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(Integer businessStatus) {
this.businessStatus = businessStatus;
}
public List<String> getShopGroupIds() {
return this.shopGroupIds;
}
public void setShopGroupIds(List<String> shopGroupIds) {
this.shopGroupIds = shopGroupIds;
}
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
public String getWeekdaysEndTime() {
return this.weekdaysEndTime;
}
public void setWeekdaysEndTime(String weekdaysEndTime) {
this.weekdaysEndTime = weekdaysEndTime;
}
public String getLatitude() {
return this.latitude;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getWeekendEndTime() {
return this.weekendEndTime;
}
public void setWeekendEndTime(String weekendEndTime) {
this.weekendEndTime = weekendEndTime;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
public String getRegionAddress() {
return this.regionAddress;
}
public void setRegionAddress(String regionAddress) {
this.regionAddress = regionAddress;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
public String getWeekendStartTime() {
return this.weekendStartTime;
}
public void setWeekendStartTime(String weekendStartTime) {
this.weekendStartTime = weekendStartTime;
}
public String getWeekdaysStartTime() {
return this.weekdaysStartTime;
}
public void setWeekdaysStartTime(String weekdaysStartTime) {
this.weekdaysStartTime = weekdaysStartTime;
}
public String getLongitude() {
return this.longitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
}
}
@Override
public Class<CreateShopResponse> getResponseClass() {
return CreateShopResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateShopResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.CreateShopResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateShopResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<String> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getData() {
return this.data;
}
public void setData(List<String> data) {
this.data = data;
}
@Override
public CreateShopResponse getInstance(UnmarshallerContext context) {
return CreateShopResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateSpeechTemplateRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateSpeechTemplateRequest extends RoaAcsRequest<CreateSpeechTemplateResponse> {
private String country;
private String type;
private String contents;
public CreateSpeechTemplateRequest() {
super("cd", "2021-12-7", "CreateSpeechTemplate");
setUriPattern("/CreateSpeechTemplate");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("country", country);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
public String getContents() {
return this.contents;
}
public void setContents(String contents) {
this.contents = contents;
if(contents != null){
putBodyParameter("Contents", contents);
}
}
@Override
public Class<CreateSpeechTemplateResponse> getResponseClass() {
return CreateSpeechTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/CreateSpeechTemplateResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.CreateSpeechTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateSpeechTemplateResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public CreateSpeechTemplateResponse getInstance(UnmarshallerContext context) {
return CreateSpeechTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteLabelRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DeleteLabelRequest extends RoaAcsRequest<DeleteLabelResponse> {
private String country;
private String labelId;
public DeleteLabelRequest() {
super("cd", "2021-12-7", "DeleteLabel");
setUriPattern("/DeleteLabel");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
if(labelId != null){
putBodyParameter("LabelId", labelId);
}
}
@Override
public Class<DeleteLabelResponse> getResponseClass() {
return DeleteLabelResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteLabelResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.DeleteLabelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteLabelResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteLabelResponse getInstance(UnmarshallerContext context) {
return DeleteLabelResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteProductImageRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 DeleteProductImageRequest extends RoaAcsRequest<DeleteProductImageResponse> {
private String country;
private String productCode;
@SerializedName("productImageIds")
private List<String> productImageIds;
public DeleteProductImageRequest() {
super("cd", "2021-12-7", "DeleteProductImage");
setUriPattern("/DeleteProductImage");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
if(productCode != null){
putBodyParameter("ProductCode", productCode);
}
}
public List<String> getProductImageIds() {
return this.productImageIds;
}
public void setProductImageIds(List<String> productImageIds) {
this.productImageIds = productImageIds;
if (productImageIds != null) {
putBodyParameter("ProductImageIds" , new Gson().toJson(productImageIds));
}
}
@Override
public Class<DeleteProductImageResponse> getResponseClass() {
return DeleteProductImageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteProductImageResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.DeleteProductImageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteProductImageResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public DeleteProductImageResponse getInstance(UnmarshallerContext context) {
return DeleteProductImageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteShopGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DeleteShopGroupRequest extends RoaAcsRequest<DeleteShopGroupResponse> {
private String country;
private String shopGroupId;
public DeleteShopGroupRequest() {
super("cd", "2021-12-7", "DeleteShopGroup");
setUriPattern("/DeleteShopGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
@Override
public Class<DeleteShopGroupResponse> getResponseClass() {
return DeleteShopGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteShopGroupResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.DeleteShopGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteShopGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public DeleteShopGroupResponse getInstance(UnmarshallerContext context) {
return DeleteShopGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteShopRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DeleteShopRequest extends RoaAcsRequest<DeleteShopResponse> {
private String country;
private String shopId;
public DeleteShopRequest() {
super("cd", "2021-12-7", "DeleteShop");
setUriPattern("/DeleteShop");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
if(shopId != null){
putBodyParameter("ShopId", shopId);
}
}
@Override
public Class<DeleteShopResponse> getResponseClass() {
return DeleteShopResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteShopResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.DeleteShopResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteShopResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public DeleteShopResponse getInstance(UnmarshallerContext context) {
return DeleteShopResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteSpeechTemplateRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DeleteSpeechTemplateRequest extends RoaAcsRequest<DeleteSpeechTemplateResponse> {
private String country;
private String type;
public DeleteSpeechTemplateRequest() {
super("cd", "2021-12-7", "DeleteSpeechTemplate");
setUriPattern("/DeleteSpeechTemplate");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("country", country);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
@Override
public Class<DeleteSpeechTemplateResponse> getResponseClass() {
return DeleteSpeechTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/DeleteSpeechTemplateResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.DeleteSpeechTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSpeechTemplateResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteSpeechTemplateResponse getInstance(UnmarshallerContext context) {
return DeleteSpeechTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetMenuDataStatusRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetMenuDataStatusRequest extends RoaAcsRequest<GetMenuDataStatusResponse> {
private String country;
private String productContainerId;
private String batchId;
public GetMenuDataStatusRequest() {
super("cd", "2021-12-7", "GetMenuDataStatus");
setUriPattern("/GetMenuDataStatus");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getProductContainerId() {
return this.productContainerId;
}
public void setProductContainerId(String productContainerId) {
this.productContainerId = productContainerId;
if(productContainerId != null){
putBodyParameter("ProductContainerId", productContainerId);
}
}
public String getBatchId() {
return this.batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
if(batchId != null){
putBodyParameter("BatchId", batchId);
}
}
@Override
public Class<GetMenuDataStatusResponse> getResponseClass() {
return GetMenuDataStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetMenuDataStatusResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.GetMenuDataStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMenuDataStatusResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String productContainerId;
private String batchId;
private Long total;
private Long failed;
private List<String> failedProductContainerList;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getProductContainerId() {
return this.productContainerId;
}
public void setProductContainerId(String productContainerId) {
this.productContainerId = productContainerId;
}
public String getBatchId() {
return this.batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
}
public Long getTotal() {
return this.total;
}
public void setTotal(Long total) {
this.total = total;
}
public Long getFailed() {
return this.failed;
}
public void setFailed(Long failed) {
this.failed = failed;
}
public List<String> getFailedProductContainerList() {
return this.failedProductContainerList;
}
public void setFailedProductContainerList(List<String> failedProductContainerList) {
this.failedProductContainerList = failedProductContainerList;
}
@Override
public GetMenuDataStatusResponse getInstance(UnmarshallerContext context) {
return GetMenuDataStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetShopGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetShopGroupRequest extends RoaAcsRequest<GetShopGroupResponse> {
private String country;
private String shopGroupId;
public GetShopGroupRequest() {
super("cd", "2021-12-7", "GetShopGroup");
setUriPattern("/GetShopGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
@Override
public Class<GetShopGroupResponse> getResponseClass() {
return GetShopGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetShopGroupResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.GetShopGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetShopGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String shopGroupId;
private String shopGroupName;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
}
public String getShopGroupName() {
return this.shopGroupName;
}
public void setShopGroupName(String shopGroupName) {
this.shopGroupName = shopGroupName;
}
@Override
public GetShopGroupResponse getInstance(UnmarshallerContext context) {
return GetShopGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetShopRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetShopRequest extends RoaAcsRequest<GetShopResponse> {
private String country;
private String shopId;
public GetShopRequest() {
super("cd", "2021-12-7", "GetShop");
setUriPattern("/GetShop");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
if(shopId != null){
putBodyParameter("ShopId", shopId);
}
}
@Override
public Class<GetShopResponse> getResponseClass() {
return GetShopResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetShopResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.GetShopResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetShopResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String shopId;
private String shopName;
private String location;
private String longitude;
private String latitude;
private String regionAddress;
private String regionCode;
private String remark;
private Integer deviceNum;
private Long gmtCreateTime;
private String weekdaysStartTime;
private String weekdaysEndTime;
private String weekendStartTime;
private String weekendEndTime;
private Integer businessStatus;
private List<String> deviceMacList;
private List<String> shopGroupIds;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
public String getLongitude() {
return this.longitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
}
public String getLatitude() {
return this.latitude;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
}
public String getRegionAddress() {
return this.regionAddress;
}
public void setRegionAddress(String regionAddress) {
this.regionAddress = regionAddress;
}
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Integer getDeviceNum() {
return this.deviceNum;
}
public void setDeviceNum(Integer deviceNum) {
this.deviceNum = deviceNum;
}
public Long getGmtCreateTime() {
return this.gmtCreateTime;
}
public void setGmtCreateTime(Long gmtCreateTime) {
this.gmtCreateTime = gmtCreateTime;
}
public String getWeekdaysStartTime() {
return this.weekdaysStartTime;
}
public void setWeekdaysStartTime(String weekdaysStartTime) {
this.weekdaysStartTime = weekdaysStartTime;
}
public String getWeekdaysEndTime() {
return this.weekdaysEndTime;
}
public void setWeekdaysEndTime(String weekdaysEndTime) {
this.weekdaysEndTime = weekdaysEndTime;
}
public String getWeekendStartTime() {
return this.weekendStartTime;
}
public void setWeekendStartTime(String weekendStartTime) {
this.weekendStartTime = weekendStartTime;
}
public String getWeekendEndTime() {
return this.weekendEndTime;
}
public void setWeekendEndTime(String weekendEndTime) {
this.weekendEndTime = weekendEndTime;
}
public Integer getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(Integer businessStatus) {
this.businessStatus = businessStatus;
}
public List<String> getDeviceMacList() {
return this.deviceMacList;
}
public void setDeviceMacList(List<String> deviceMacList) {
this.deviceMacList = deviceMacList;
}
public List<String> getShopGroupIds() {
return this.shopGroupIds;
}
public void setShopGroupIds(List<String> shopGroupIds) {
this.shopGroupIds = shopGroupIds;
}
@Override
public GetShopResponse getInstance(UnmarshallerContext context) {
return GetShopResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetSpeechTemplateRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetSpeechTemplateRequest extends RoaAcsRequest<GetSpeechTemplateResponse> {
private String country;
private String type;
public GetSpeechTemplateRequest() {
super("cd", "2021-12-7", "GetSpeechTemplate");
setUriPattern("/GetSpeechTemplate");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("country", country);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
@Override
public Class<GetSpeechTemplateResponse> getResponseClass() {
return GetSpeechTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/GetSpeechTemplateResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.GetSpeechTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSpeechTemplateResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public GetSpeechTemplateResponse getInstance(UnmarshallerContext context) {
return GetSpeechTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/ListMenuDataRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ListMenuDataRequest extends RoaAcsRequest<ListMenuDataResponse> {
private String country;
private Integer pageNumber;
private Integer pageSize;
private String createRequestId;
private String productContainerId;
private String batchId;
public ListMenuDataRequest() {
super("cd", "2021-12-7", "ListMenuData");
setUriPattern("/ListMenuData");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getCreateRequestId() {
return this.createRequestId;
}
public void setCreateRequestId(String createRequestId) {
this.createRequestId = createRequestId;
if(createRequestId != null){
putBodyParameter("CreateRequestId", createRequestId);
}
}
public String getProductContainerId() {
return this.productContainerId;
}
public void setProductContainerId(String productContainerId) {
this.productContainerId = productContainerId;
if(productContainerId != null){
putBodyParameter("ProductContainerId", productContainerId);
}
}
public String getBatchId() {
return this.batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
if(batchId != null){
putBodyParameter("BatchId", batchId);
}
}
@Override
public Class<ListMenuDataResponse> getResponseClass() {
return ListMenuDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/ListMenuDataResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.ListMenuDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListMenuDataResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Long totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String productContainerId;
private String batchId;
private String shopGroupId;
private String type;
private Integer priority;
private List<ProductCombineListItem> productCombineList;
private List<String> shopIdList;
public String getProductContainerId() {
return this.productContainerId;
}
public void setProductContainerId(String productContainerId) {
this.productContainerId = productContainerId;
}
public String getBatchId() {
return this.batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Integer getPriority() {
return this.priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
public List<ProductCombineListItem> getProductCombineList() {
return this.productCombineList;
}
public void setProductCombineList(List<ProductCombineListItem> productCombineList) {
this.productCombineList = productCombineList;
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
}
public static class ProductCombineListItem {
private Integer order;
private String name;
private List<ProductItemListItem> productItemList;
public Integer getOrder() {
return this.order;
}
public void setOrder(Integer order) {
this.order = order;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<ProductItemListItem> getProductItemList() {
return this.productItemList;
}
public void setProductItemList(List<ProductItemListItem> productItemList) {
this.productItemList = productItemList;
}
public static class ProductItemListItem {
private Integer order;
private ProductInfo productInfo;
public Integer getOrder() {
return this.order;
}
public void setOrder(Integer order) {
this.order = order;
}
public ProductInfo getProductInfo() {
return this.productInfo;
}
public void setProductInfo(ProductInfo productInfo) {
this.productInfo = productInfo;
}
public static class ProductInfo {
private String productId;
private String chineseName;
private String englishName;
private String description;
private String iconText;
private String productType;
private String temperature;
private String originalPrice;
private String currentPrice;
public String getProductId() {
return this.productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
public String getChineseName() {
return this.chineseName;
}
public void setChineseName(String chineseName) {
this.chineseName = chineseName;
}
public String getEnglishName() {
return this.englishName;
}
public void setEnglishName(String englishName) {
this.englishName = englishName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getIconText() {
return this.iconText;
}
public void setIconText(String iconText) {
this.iconText = iconText;
}
public String getProductType() {
return this.productType;
}
public void setProductType(String productType) {
this.productType = productType;
}
public String getTemperature() {
return this.temperature;
}
public void setTemperature(String temperature) {
this.temperature = temperature;
}
public String getOriginalPrice() {
return this.originalPrice;
}
public void setOriginalPrice(String originalPrice) {
this.originalPrice = originalPrice;
}
public String getCurrentPrice() {
return this.currentPrice;
}
public void setCurrentPrice(String currentPrice) {
this.currentPrice = currentPrice;
}
}
}
}
}
@Override
public ListMenuDataResponse getInstance(UnmarshallerContext context) {
return ListMenuDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/ListShopGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ListShopGroupRequest extends RoaAcsRequest<ListShopGroupResponse> {
private String country;
private Integer pageNumber;
private Integer pageSize;
private String shopGroupId;
private String shopGroupName;
public ListShopGroupRequest() {
super("cd", "2021-12-7", "ListShopGroup");
setUriPattern("/ListShopGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
public String getShopGroupName() {
return this.shopGroupName;
}
public void setShopGroupName(String shopGroupName) {
this.shopGroupName = shopGroupName;
if(shopGroupName != null){
putBodyParameter("ShopGroupName", shopGroupName);
}
}
@Override
public Class<ListShopGroupResponse> getResponseClass() {
return ListShopGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/ListShopGroupResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.ListShopGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListShopGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Long totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String shopGroupId;
private String shopGroupName;
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
}
public String getShopGroupName() {
return this.shopGroupName;
}
public void setShopGroupName(String shopGroupName) {
this.shopGroupName = shopGroupName;
}
}
@Override
public ListShopGroupResponse getInstance(UnmarshallerContext context) {
return ListShopGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/ListShopRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 ListShopRequest extends RoaAcsRequest<ListShopResponse> {
private String country;
private Integer pageNumber;
private Integer pageSize;
private String shopId;
@SerializedName("shopGroupIds")
private List<String> shopGroupIds;
private String shopName;
public ListShopRequest() {
super("cd", "2021-12-7", "ListShop");
setUriPattern("/ListShop");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
if(shopId != null){
putBodyParameter("ShopId", shopId);
}
}
public List<String> getShopGroupIds() {
return this.shopGroupIds;
}
public void setShopGroupIds(List<String> shopGroupIds) {
this.shopGroupIds = shopGroupIds;
if (shopGroupIds != null) {
putBodyParameter("ShopGroupIds" , new Gson().toJson(shopGroupIds));
}
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
if(shopName != null){
putBodyParameter("ShopName", shopName);
}
}
@Override
public Class<ListShopResponse> getResponseClass() {
return ListShopResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/ListShopResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.ListShopResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListShopResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Long totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String shopId;
private String shopName;
private String location;
private String longitude;
private String latitude;
private String regionAddress;
private String regionCode;
private String remark;
private Integer deviceNum;
private Long gmtCreateTime;
private String weekdaysStartTime;
private String weekdaysEndTime;
private String weekendStartTime;
private String weekendEndTime;
private Integer businessStatus;
private List<String> deviceMacList;
private List<String> shopGroupIds;
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
public String getLongitude() {
return this.longitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
}
public String getLatitude() {
return this.latitude;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
}
public String getRegionAddress() {
return this.regionAddress;
}
public void setRegionAddress(String regionAddress) {
this.regionAddress = regionAddress;
}
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Integer getDeviceNum() {
return this.deviceNum;
}
public void setDeviceNum(Integer deviceNum) {
this.deviceNum = deviceNum;
}
public Long getGmtCreateTime() {
return this.gmtCreateTime;
}
public void setGmtCreateTime(Long gmtCreateTime) {
this.gmtCreateTime = gmtCreateTime;
}
public String getWeekdaysStartTime() {
return this.weekdaysStartTime;
}
public void setWeekdaysStartTime(String weekdaysStartTime) {
this.weekdaysStartTime = weekdaysStartTime;
}
public String getWeekdaysEndTime() {
return this.weekdaysEndTime;
}
public void setWeekdaysEndTime(String weekdaysEndTime) {
this.weekdaysEndTime = weekdaysEndTime;
}
public String getWeekendStartTime() {
return this.weekendStartTime;
}
public void setWeekendStartTime(String weekendStartTime) {
this.weekendStartTime = weekendStartTime;
}
public String getWeekendEndTime() {
return this.weekendEndTime;
}
public void setWeekendEndTime(String weekendEndTime) {
this.weekendEndTime = weekendEndTime;
}
public Integer getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(Integer businessStatus) {
this.businessStatus = businessStatus;
}
public List<String> getDeviceMacList() {
return this.deviceMacList;
}
public void setDeviceMacList(List<String> deviceMacList) {
this.deviceMacList = deviceMacList;
}
public List<String> getShopGroupIds() {
return this.shopGroupIds;
}
public void setShopGroupIds(List<String> shopGroupIds) {
this.shopGroupIds = shopGroupIds;
}
}
@Override
public ListShopResponse getInstance(UnmarshallerContext context) {
return ListShopResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/PushStoreSpeechDataRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 PushStoreSpeechDataRequest extends RoaAcsRequest<PushStoreSpeechDataResponse> {
private String country;
private String storeId;
@SerializedName("speech")
private List<Speech> speech;
public PushStoreSpeechDataRequest() {
super("cd", "2021-12-7", "PushStoreSpeechData");
setUriPattern("/PushStoreSpeechData");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("country", country);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public List<Speech> getSpeech() {
return this.speech;
}
public void setSpeech(List<Speech> speech) {
this.speech = speech;
if (speech != null) {
putBodyParameter("Speech" , new Gson().toJson(speech));
}
}
public static class Speech {
@SerializedName("Voice")
private String voice;
@SerializedName("Volume")
private Integer volume;
@SerializedName("Speech")
private Boolean speech;
@SerializedName("Contents")
private List<ContentsItem> contents;
@SerializedName("Type")
private String type;
@SerializedName("Speed")
private String speed;
public String getVoice() {
return this.voice;
}
public void setVoice(String voice) {
this.voice = voice;
}
public Integer getVolume() {
return this.volume;
}
public void setVolume(Integer volume) {
this.volume = volume;
}
public Boolean getSpeech() {
return this.speech;
}
public void setSpeech(Boolean speech) {
this.speech = speech;
}
public List<ContentsItem> getContents() {
return this.contents;
}
public void setContents(List<ContentsItem> contents) {
this.contents = contents;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getSpeed() {
return this.speed;
}
public void setSpeed(String speed) {
this.speed = speed;
}
public static class ContentsItem {
@SerializedName("Placeholder")
private String placeholder;
@SerializedName("Content")
private String content;
public String getPlaceholder() {
return this.placeholder;
}
public void setPlaceholder(String placeholder) {
this.placeholder = placeholder;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
}
}
@Override
public Class<PushStoreSpeechDataResponse> getResponseClass() {
return PushStoreSpeechDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/PushStoreSpeechDataResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.PushStoreSpeechDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class PushStoreSpeechDataResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public PushStoreSpeechDataResponse getInstance(UnmarshallerContext context) {
return PushStoreSpeechDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryDeviceDataListRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryDeviceDataListRequest extends RoaAcsRequest<QueryDeviceDataListResponse> {
private Integer pageNumber;
private Integer pageSize;
private String deviceName;
public QueryDeviceDataListRequest() {
super("cd", "2021-12-7", "QueryDeviceDataList");
setUriPattern("/QueryDeviceDataList");
setMethod(MethodType.POST);
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
if(deviceName != null){
putBodyParameter("DeviceName", deviceName);
}
}
@Override
public Class<QueryDeviceDataListResponse> getResponseClass() {
return QueryDeviceDataListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryDeviceDataListResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.QueryDeviceDataListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryDeviceDataListResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Long totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String deviceName;
private String sn;
private String mac;
private String deviceGroupList;
private String deviceModel;
private String deviceType;
private String shopName;
private String shopId;
private String regionAddress;
private String status;
private String businessStatus;
private String appVersion;
private String province;
private String city;
private String region;
private String lastOnlineTime;
private String deviceSpecificModel;
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getSn() {
return this.sn;
}
public void setSn(String sn) {
this.sn = sn;
}
public String getMac() {
return this.mac;
}
public void setMac(String mac) {
this.mac = mac;
}
public String getDeviceGroupList() {
return this.deviceGroupList;
}
public void setDeviceGroupList(String deviceGroupList) {
this.deviceGroupList = deviceGroupList;
}
public String getDeviceModel() {
return this.deviceModel;
}
public void setDeviceModel(String deviceModel) {
this.deviceModel = deviceModel;
}
public String getDeviceType() {
return this.deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getRegionAddress() {
return this.regionAddress;
}
public void setRegionAddress(String regionAddress) {
this.regionAddress = regionAddress;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(String businessStatus) {
this.businessStatus = businessStatus;
}
public String getAppVersion() {
return this.appVersion;
}
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
}
public String getProvince() {
return this.province;
}
public void setProvince(String province) {
this.province = province;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getLastOnlineTime() {
return this.lastOnlineTime;
}
public void setLastOnlineTime(String lastOnlineTime) {
this.lastOnlineTime = lastOnlineTime;
}
public String getDeviceSpecificModel() {
return this.deviceSpecificModel;
}
public void setDeviceSpecificModel(String deviceSpecificModel) {
this.deviceSpecificModel = deviceSpecificModel;
}
}
@Override
public QueryDeviceDataListResponse getInstance(UnmarshallerContext context) {
return QueryDeviceDataListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryFaultBriefListRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 QueryFaultBriefListRequest extends RoaAcsRequest<QueryFaultBriefListResponse> {
@SerializedName("shopIdList")
private List<String> shopIdList;
public QueryFaultBriefListRequest() {
super("cd", "2021-12-7", "QueryFaultBriefList");
setUriPattern("/QueryFaultBriefList");
setMethod(MethodType.POST);
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
@Override
public Class<QueryFaultBriefListResponse> getResponseClass() {
return QueryFaultBriefListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryFaultBriefListResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.QueryFaultBriefListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryFaultBriefListResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private Integer faultType;
private Integer recoveryNum;
private Integer faultNum;
public Integer getFaultType() {
return this.faultType;
}
public void setFaultType(Integer faultType) {
this.faultType = faultType;
}
public Integer getRecoveryNum() {
return this.recoveryNum;
}
public void setRecoveryNum(Integer recoveryNum) {
this.recoveryNum = recoveryNum;
}
public Integer getFaultNum() {
return this.faultNum;
}
public void setFaultNum(Integer faultNum) {
this.faultNum = faultNum;
}
}
@Override
public QueryFaultBriefListResponse getInstance(UnmarshallerContext context) {
return QueryFaultBriefListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryFaultDeviceListRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 QueryFaultDeviceListRequest extends RoaAcsRequest<QueryFaultDeviceListResponse> {
@SerializedName("shopIdList")
private List<String> shopIdList;
private String startDate;
private String endDate;
private String faultType;
private Integer dailyOnlineTime;
private Integer pageNumber;
private Integer pageSize;
public QueryFaultDeviceListRequest() {
super("cd", "2021-12-7", "QueryFaultDeviceList");
setUriPattern("/QueryFaultDeviceList");
setMethod(MethodType.POST);
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
if(startDate != null){
putBodyParameter("StartDate", startDate);
}
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
if(endDate != null){
putBodyParameter("EndDate", endDate);
}
}
public String getFaultType() {
return this.faultType;
}
public void setFaultType(String faultType) {
this.faultType = faultType;
if(faultType != null){
putBodyParameter("FaultType", faultType);
}
}
public Integer getDailyOnlineTime() {
return this.dailyOnlineTime;
}
public void setDailyOnlineTime(Integer dailyOnlineTime) {
this.dailyOnlineTime = dailyOnlineTime;
if(dailyOnlineTime != null){
putBodyParameter("DailyOnlineTime", dailyOnlineTime.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<QueryFaultDeviceListResponse> getResponseClass() {
return QueryFaultDeviceListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryFaultDeviceListResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.QueryFaultDeviceListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryFaultDeviceListResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Long totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String deviceName;
private String belongShop;
private String ticketNum;
private String dailyOnlineTime;
private String version;
private String lastOnlineTime;
private Integer faultNum;
private String status;
private String mac;
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getBelongShop() {
return this.belongShop;
}
public void setBelongShop(String belongShop) {
this.belongShop = belongShop;
}
public String getTicketNum() {
return this.ticketNum;
}
public void setTicketNum(String ticketNum) {
this.ticketNum = ticketNum;
}
public String getDailyOnlineTime() {
return this.dailyOnlineTime;
}
public void setDailyOnlineTime(String dailyOnlineTime) {
this.dailyOnlineTime = dailyOnlineTime;
}
public String getVersion() {
return this.version;
}
public void setVersion(String version) {
this.version = version;
}
public String getLastOnlineTime() {
return this.lastOnlineTime;
}
public void setLastOnlineTime(String lastOnlineTime) {
this.lastOnlineTime = lastOnlineTime;
}
public Integer getFaultNum() {
return this.faultNum;
}
public void setFaultNum(Integer faultNum) {
this.faultNum = faultNum;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getMac() {
return this.mac;
}
public void setMac(String mac) {
this.mac = mac;
}
}
@Override
public QueryFaultDeviceListResponse getInstance(UnmarshallerContext context) {
return QueryFaultDeviceListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryLabelRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryLabelRequest extends RoaAcsRequest<QueryLabelResponse> {
private String country;
private String label;
private String title;
private String labelId;
private Integer pageNo;
private Integer pageSize;
private String category;
public QueryLabelRequest() {
super("cd", "2021-12-7", "QueryLabel");
setUriPattern("/QueryLabel");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
if(label != null){
putBodyParameter("Label", label);
}
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
if(title != null){
putBodyParameter("Title", title);
}
}
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
if(labelId != null){
putBodyParameter("LabelId", labelId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putBodyParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
if(category != null){
putBodyParameter("Category", category);
}
}
@Override
public Class<QueryLabelResponse> getResponseClass() {
return QueryLabelResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryLabelResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.QueryLabelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryLabelResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Integer pageSize;
private Integer pageNo;
private Integer total;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String category;
private String labelId;
private String title;
private String label;
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
}
}
@Override
public QueryLabelResponse getInstance(UnmarshallerContext context) {
return QueryLabelResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryOperationIndexRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 QueryOperationIndexRequest extends RoaAcsRequest<QueryOperationIndexResponse> {
private String country;
@SerializedName("shopIdList")
private List<String> shopIdList;
private String startDate;
private String endDate;
public QueryOperationIndexRequest() {
super("cd", "2021-12-7", "QueryOperationIndex");
setUriPattern("/QueryOperationIndex");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
if(startDate != null){
putBodyParameter("StartDate", startDate);
}
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
if(endDate != null){
putBodyParameter("EndDate", endDate);
}
}
@Override
public Class<QueryOperationIndexResponse> getResponseClass() {
return QueryOperationIndexResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryOperationIndexResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.QueryOperationIndexResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryOperationIndexResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Data data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private ShopIndex shopIndex;
private DeviceIndex deviceIndex;
private TicketIndex ticketIndex;
public ShopIndex getShopIndex() {
return this.shopIndex;
}
public void setShopIndex(ShopIndex shopIndex) {
this.shopIndex = shopIndex;
}
public DeviceIndex getDeviceIndex() {
return this.deviceIndex;
}
public void setDeviceIndex(DeviceIndex deviceIndex) {
this.deviceIndex = deviceIndex;
}
public TicketIndex getTicketIndex() {
return this.ticketIndex;
}
public void setTicketIndex(TicketIndex ticketIndex) {
this.ticketIndex = ticketIndex;
}
public static class ShopIndex {
private Integer shopTotal;
private Integer netWorkShopNum;
private Integer installedShopNum;
private Integer notWorkShopNum;
private Integer upholdShopNum;
private Integer normalShopNum;
private Integer faultShopNum;
private Integer highFreqFaultShopNum;
public Integer getShopTotal() {
return this.shopTotal;
}
public void setShopTotal(Integer shopTotal) {
this.shopTotal = shopTotal;
}
public Integer getNetWorkShopNum() {
return this.netWorkShopNum;
}
public void setNetWorkShopNum(Integer netWorkShopNum) {
this.netWorkShopNum = netWorkShopNum;
}
public Integer getInstalledShopNum() {
return this.installedShopNum;
}
public void setInstalledShopNum(Integer installedShopNum) {
this.installedShopNum = installedShopNum;
}
public Integer getNotWorkShopNum() {
return this.notWorkShopNum;
}
public void setNotWorkShopNum(Integer notWorkShopNum) {
this.notWorkShopNum = notWorkShopNum;
}
public Integer getUpholdShopNum() {
return this.upholdShopNum;
}
public void setUpholdShopNum(Integer upholdShopNum) {
this.upholdShopNum = upholdShopNum;
}
public Integer getNormalShopNum() {
return this.normalShopNum;
}
public void setNormalShopNum(Integer normalShopNum) {
this.normalShopNum = normalShopNum;
}
public Integer getFaultShopNum() {
return this.faultShopNum;
}
public void setFaultShopNum(Integer faultShopNum) {
this.faultShopNum = faultShopNum;
}
public Integer getHighFreqFaultShopNum() {
return this.highFreqFaultShopNum;
}
public void setHighFreqFaultShopNum(Integer highFreqFaultShopNum) {
this.highFreqFaultShopNum = highFreqFaultShopNum;
}
}
public static class DeviceIndex {
private Integer onlineNum;
private Integer cpuAverage;
private Integer storageAverage;
private Integer networkTraffic;
private Integer totalWorkingDeviceNum;
private Integer normalDeviceNum;
private Integer faultDeviceNum;
private Integer highFreqFaultDeviceNum;
public Integer getOnlineNum() {
return this.onlineNum;
}
public void setOnlineNum(Integer onlineNum) {
this.onlineNum = onlineNum;
}
public Integer getCpuAverage() {
return this.cpuAverage;
}
public void setCpuAverage(Integer cpuAverage) {
this.cpuAverage = cpuAverage;
}
public Integer getStorageAverage() {
return this.storageAverage;
}
public void setStorageAverage(Integer storageAverage) {
this.storageAverage = storageAverage;
}
public Integer getNetworkTraffic() {
return this.networkTraffic;
}
public void setNetworkTraffic(Integer networkTraffic) {
this.networkTraffic = networkTraffic;
}
public Integer getTotalWorkingDeviceNum() {
return this.totalWorkingDeviceNum;
}
public void setTotalWorkingDeviceNum(Integer totalWorkingDeviceNum) {
this.totalWorkingDeviceNum = totalWorkingDeviceNum;
}
public Integer getNormalDeviceNum() {
return this.normalDeviceNum;
}
public void setNormalDeviceNum(Integer normalDeviceNum) {
this.normalDeviceNum = normalDeviceNum;
}
public Integer getFaultDeviceNum() {
return this.faultDeviceNum;
}
public void setFaultDeviceNum(Integer faultDeviceNum) {
this.faultDeviceNum = faultDeviceNum;
}
public Integer getHighFreqFaultDeviceNum() {
return this.highFreqFaultDeviceNum;
}
public void setHighFreqFaultDeviceNum(Integer highFreqFaultDeviceNum) {
this.highFreqFaultDeviceNum = highFreqFaultDeviceNum;
}
}
public static class TicketIndex {
private Integer totalTicketNum;
private Integer autoRecoverTicketNum;
private Integer openTicketNum;
private Double recoverRate;
private Double autoRecoverRate;
public Integer getTotalTicketNum() {
return this.totalTicketNum;
}
public void setTotalTicketNum(Integer totalTicketNum) {
this.totalTicketNum = totalTicketNum;
}
public Integer getAutoRecoverTicketNum() {
return this.autoRecoverTicketNum;
}
public void setAutoRecoverTicketNum(Integer autoRecoverTicketNum) {
this.autoRecoverTicketNum = autoRecoverTicketNum;
}
public Integer getOpenTicketNum() {
return this.openTicketNum;
}
public void setOpenTicketNum(Integer openTicketNum) {
this.openTicketNum = openTicketNum;
}
public Double getRecoverRate() {
return this.recoverRate;
}
public void setRecoverRate(Double recoverRate) {
this.recoverRate = recoverRate;
}
public Double getAutoRecoverRate() {
return this.autoRecoverRate;
}
public void setAutoRecoverRate(Double autoRecoverRate) {
this.autoRecoverRate = autoRecoverRate;
}
}
}
@Override
public QueryOperationIndexResponse getInstance(UnmarshallerContext context) {
return QueryOperationIndexResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryShopIndexRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 QueryShopIndexRequest extends RoaAcsRequest<QueryShopIndexResponse> {
private String country;
@SerializedName("shopIdList")
private List<String> shopIdList;
public QueryShopIndexRequest() {
super("cd", "2021-12-7", "QueryShopIndex");
setUriPattern("/QueryShopIndex");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
@Override
public Class<QueryShopIndexResponse> getResponseClass() {
return QueryShopIndexResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryShopIndexResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.QueryShopIndexResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryShopIndexResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Data data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private ShopScheduleIndex shopScheduleIndex;
private ShopIndex shopIndex;
public ShopScheduleIndex getShopScheduleIndex() {
return this.shopScheduleIndex;
}
public void setShopScheduleIndex(ShopScheduleIndex shopScheduleIndex) {
this.shopScheduleIndex = shopScheduleIndex;
}
public ShopIndex getShopIndex() {
return this.shopIndex;
}
public void setShopIndex(ShopIndex shopIndex) {
this.shopIndex = shopIndex;
}
public static class ShopScheduleIndex {
private Integer scheduleNum;
private Integer scheduleShopNum;
private Float successRate;
private Integer failShopNum;
private Double costTime;
private List<FailShopsItem> failShops;
public Integer getScheduleNum() {
return this.scheduleNum;
}
public void setScheduleNum(Integer scheduleNum) {
this.scheduleNum = scheduleNum;
}
public Integer getScheduleShopNum() {
return this.scheduleShopNum;
}
public void setScheduleShopNum(Integer scheduleShopNum) {
this.scheduleShopNum = scheduleShopNum;
}
public Float getSuccessRate() {
return this.successRate;
}
public void setSuccessRate(Float successRate) {
this.successRate = successRate;
}
public Integer getFailShopNum() {
return this.failShopNum;
}
public void setFailShopNum(Integer failShopNum) {
this.failShopNum = failShopNum;
}
public Double getCostTime() {
return this.costTime;
}
public void setCostTime(Double costTime) {
this.costTime = costTime;
}
public List<FailShopsItem> getFailShops() {
return this.failShops;
}
public void setFailShops(List<FailShopsItem> failShops) {
this.failShops = failShops;
}
public static class FailShopsItem {
private String shopId;
private String shopName;
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
}
}
public static class ShopIndex {
private Integer shopTotal;
private Integer netWorkShopNum;
private Integer installedShopNum;
private Integer notWorkShopNum;
private Integer upholdShopNum;
private Integer normalShopNum;
private Integer faultShopNum;
private Integer highFreqFaultShopNum;
public Integer getShopTotal() {
return this.shopTotal;
}
public void setShopTotal(Integer shopTotal) {
this.shopTotal = shopTotal;
}
public Integer getNetWorkShopNum() {
return this.netWorkShopNum;
}
public void setNetWorkShopNum(Integer netWorkShopNum) {
this.netWorkShopNum = netWorkShopNum;
}
public Integer getInstalledShopNum() {
return this.installedShopNum;
}
public void setInstalledShopNum(Integer installedShopNum) {
this.installedShopNum = installedShopNum;
}
public Integer getNotWorkShopNum() {
return this.notWorkShopNum;
}
public void setNotWorkShopNum(Integer notWorkShopNum) {
this.notWorkShopNum = notWorkShopNum;
}
public Integer getUpholdShopNum() {
return this.upholdShopNum;
}
public void setUpholdShopNum(Integer upholdShopNum) {
this.upholdShopNum = upholdShopNum;
}
public Integer getNormalShopNum() {
return this.normalShopNum;
}
public void setNormalShopNum(Integer normalShopNum) {
this.normalShopNum = normalShopNum;
}
public Integer getFaultShopNum() {
return this.faultShopNum;
}
public void setFaultShopNum(Integer faultShopNum) {
this.faultShopNum = faultShopNum;
}
public Integer getHighFreqFaultShopNum() {
return this.highFreqFaultShopNum;
}
public void setHighFreqFaultShopNum(Integer highFreqFaultShopNum) {
this.highFreqFaultShopNum = highFreqFaultShopNum;
}
}
}
@Override
public QueryShopIndexResponse getInstance(UnmarshallerContext context) {
return QueryShopIndexResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryTicketListRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 QueryTicketListRequest extends RoaAcsRequest<QueryTicketListResponse> {
private String country;
@SerializedName("shopIdList")
private List<String> shopIdList;
private Long endTime;
private Long startTime;
private Integer pageNumber;
@SerializedName("ticketIdList")
private List<String> ticketIdList;
private Integer pageSize;
@SerializedName("ticketTypeList")
private List<String> ticketTypeList;
private Integer status;
public QueryTicketListRequest() {
super("cd", "2021-12-7", "QueryTicketList");
setUriPattern("/QueryTicketList");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putBodyParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putBodyParameter("StartTime", startTime.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public List<String> getTicketIdList() {
return this.ticketIdList;
}
public void setTicketIdList(List<String> ticketIdList) {
this.ticketIdList = ticketIdList;
if (ticketIdList != null) {
putBodyParameter("TicketIdList" , new Gson().toJson(ticketIdList));
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public List<String> getTicketTypeList() {
return this.ticketTypeList;
}
public void setTicketTypeList(List<String> ticketTypeList) {
this.ticketTypeList = ticketTypeList;
if (ticketTypeList != null) {
putBodyParameter("TicketTypeList" , new Gson().toJson(ticketTypeList));
}
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
if(status != null){
putBodyParameter("Status", status.toString());
}
}
@Override
public Class<QueryTicketListResponse> getResponseClass() {
return QueryTicketListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/QueryTicketListResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.QueryTicketListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryTicketListResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private Long totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String ticketId;
private String deviceSn;
private String deviceAlias;
private String shopName;
private String shopId;
private String ticketType;
private Integer status;
private Long submitDate;
private Long updateDate;
public String getTicketId() {
return this.ticketId;
}
public void setTicketId(String ticketId) {
this.ticketId = ticketId;
}
public String getDeviceSn() {
return this.deviceSn;
}
public void setDeviceSn(String deviceSn) {
this.deviceSn = deviceSn;
}
public String getDeviceAlias() {
return this.deviceAlias;
}
public void setDeviceAlias(String deviceAlias) {
this.deviceAlias = deviceAlias;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getTicketType() {
return this.ticketType;
}
public void setTicketType(String ticketType) {
this.ticketType = ticketType;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getSubmitDate() {
return this.submitDate;
}
public void setSubmitDate(Long submitDate) {
this.submitDate = submitDate;
}
public Long getUpdateDate() {
return this.updateDate;
}
public void setUpdateDate(Long updateDate) {
this.updateDate = updateDate;
}
}
@Override
public QueryTicketListResponse getInstance(UnmarshallerContext context) {
return QueryTicketListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/RemoveShopFromGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 RemoveShopFromGroupRequest extends RoaAcsRequest<RemoveShopFromGroupResponse> {
private String shopGroupId;
@SerializedName("shopIdList")
private List<String> shopIdList;
public RemoveShopFromGroupRequest() {
super("cd", "2021-12-7", "RemoveShopFromGroup");
setUriPattern("/RemoveShopFromGroup");
setMethod(MethodType.POST);
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
@Override
public Class<RemoveShopFromGroupResponse> getResponseClass() {
return RemoveShopFromGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/RemoveShopFromGroupResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.RemoveShopFromGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RemoveShopFromGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public RemoveShopFromGroupResponse getInstance(UnmarshallerContext context) {
return RemoveShopFromGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/RemoveShopsFromGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 RemoveShopsFromGroupRequest extends RoaAcsRequest<RemoveShopsFromGroupResponse> {
private String country;
private String shopGroupId;
@SerializedName("shopIdList")
private List<String> shopIdList;
public RemoveShopsFromGroupRequest() {
super("cd", "2021-12-7", "RemoveShopsFromGroup");
setUriPattern("/RemoveShopsFromGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
public List<String> getShopIdList() {
return this.shopIdList;
}
public void setShopIdList(List<String> shopIdList) {
this.shopIdList = shopIdList;
if (shopIdList != null) {
putBodyParameter("ShopIdList" , new Gson().toJson(shopIdList));
}
}
@Override
public Class<RemoveShopsFromGroupResponse> getResponseClass() {
return RemoveShopsFromGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/RemoveShopsFromGroupResponse.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.cd.model.v2021127;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.RemoveShopsFromGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RemoveShopsFromGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private List<DataItem> data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String shopId;
private String code;
private String message;
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
}
@Override
public RemoveShopsFromGroupResponse getInstance(UnmarshallerContext context) {
return RemoveShopsFromGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateLabelRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class UpdateLabelRequest extends RoaAcsRequest<UpdateLabelResponse> {
private String country;
private String label;
private String title;
private String labelId;
public UpdateLabelRequest() {
super("cd", "2021-12-7", "UpdateLabel");
setUriPattern("/UpdateLabel");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
if(label != null){
putBodyParameter("Label", label);
}
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
if(title != null){
putBodyParameter("Title", title);
}
}
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
if(labelId != null){
putBodyParameter("LabelId", labelId);
}
}
@Override
public Class<UpdateLabelResponse> getResponseClass() {
return UpdateLabelResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateLabelResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.UpdateLabelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateLabelResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateLabelResponse getInstance(UnmarshallerContext context) {
return UpdateLabelResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateShopGroupRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class UpdateShopGroupRequest extends RoaAcsRequest<UpdateShopGroupResponse> {
private String country;
private String shopGroupName;
private String shopGroupId;
public UpdateShopGroupRequest() {
super("cd", "2021-12-7", "UpdateShopGroup");
setUriPattern("/UpdateShopGroup");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getShopGroupName() {
return this.shopGroupName;
}
public void setShopGroupName(String shopGroupName) {
this.shopGroupName = shopGroupName;
if(shopGroupName != null){
putBodyParameter("ShopGroupName", shopGroupName);
}
}
public String getShopGroupId() {
return this.shopGroupId;
}
public void setShopGroupId(String shopGroupId) {
this.shopGroupId = shopGroupId;
if(shopGroupId != null){
putBodyParameter("ShopGroupId", shopGroupId);
}
}
@Override
public Class<UpdateShopGroupResponse> getResponseClass() {
return UpdateShopGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateShopGroupResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.UpdateShopGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateShopGroupResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public UpdateShopGroupResponse getInstance(UnmarshallerContext context) {
return UpdateShopGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateShopRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
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 UpdateShopRequest extends RoaAcsRequest<UpdateShopResponse> {
private String country;
private String regionCode;
private String latitude;
private String remark;
private String regionAddress;
private String longitude;
private Integer businessStatus;
@SerializedName("shopGroupIds")
private List<String> shopGroupIds;
private String weekdaysEndTime;
private String weekendEndTime;
private String shopName;
private String shopId;
private String location;
private String weekendStartTime;
private String weekdaysStartTime;
public UpdateShopRequest() {
super("cd", "2021-12-7", "UpdateShop");
setUriPattern("/UpdateShop");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("Country", country);
}
}
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
if(regionCode != null){
putBodyParameter("RegionCode", regionCode);
}
}
public String getLatitude() {
return this.latitude;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
if(latitude != null){
putBodyParameter("Latitude", latitude);
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putBodyParameter("Remark", remark);
}
}
public String getRegionAddress() {
return this.regionAddress;
}
public void setRegionAddress(String regionAddress) {
this.regionAddress = regionAddress;
if(regionAddress != null){
putBodyParameter("RegionAddress", regionAddress);
}
}
public String getLongitude() {
return this.longitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
if(longitude != null){
putBodyParameter("Longitude", longitude);
}
}
public Integer getBusinessStatus() {
return this.businessStatus;
}
public void setBusinessStatus(Integer businessStatus) {
this.businessStatus = businessStatus;
if(businessStatus != null){
putBodyParameter("BusinessStatus", businessStatus.toString());
}
}
public List<String> getShopGroupIds() {
return this.shopGroupIds;
}
public void setShopGroupIds(List<String> shopGroupIds) {
this.shopGroupIds = shopGroupIds;
if (shopGroupIds != null) {
putBodyParameter("ShopGroupIds" , new Gson().toJson(shopGroupIds));
}
}
public String getWeekdaysEndTime() {
return this.weekdaysEndTime;
}
public void setWeekdaysEndTime(String weekdaysEndTime) {
this.weekdaysEndTime = weekdaysEndTime;
if(weekdaysEndTime != null){
putBodyParameter("WeekdaysEndTime", weekdaysEndTime);
}
}
public String getWeekendEndTime() {
return this.weekendEndTime;
}
public void setWeekendEndTime(String weekendEndTime) {
this.weekendEndTime = weekendEndTime;
if(weekendEndTime != null){
putBodyParameter("WeekendEndTime", weekendEndTime);
}
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
if(shopName != null){
putBodyParameter("ShopName", shopName);
}
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
if(shopId != null){
putBodyParameter("ShopId", shopId);
}
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
if(location != null){
putBodyParameter("Location", location);
}
}
public String getWeekendStartTime() {
return this.weekendStartTime;
}
public void setWeekendStartTime(String weekendStartTime) {
this.weekendStartTime = weekendStartTime;
if(weekendStartTime != null){
putBodyParameter("WeekendStartTime", weekendStartTime);
}
}
public String getWeekdaysStartTime() {
return this.weekdaysStartTime;
}
public void setWeekdaysStartTime(String weekdaysStartTime) {
this.weekdaysStartTime = weekdaysStartTime;
if(weekdaysStartTime != null){
putBodyParameter("WeekdaysStartTime", weekdaysStartTime);
}
}
@Override
public Class<UpdateShopResponse> getResponseClass() {
return UpdateShopResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateShopResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.UpdateShopResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateShopResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
private String data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public UpdateShopResponse getInstance(UnmarshallerContext context) {
return UpdateShopResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateSpeechTemplateRequest.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.cd.model.v2021127;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class UpdateSpeechTemplateRequest extends RoaAcsRequest<UpdateSpeechTemplateResponse> {
private String country;
private String type;
private String contents;
public UpdateSpeechTemplateRequest() {
super("cd", "2021-12-7", "UpdateSpeechTemplate");
setUriPattern("/UpdateSpeechTemplate");
setMethod(MethodType.POST);
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
if(country != null){
putBodyParameter("country", country);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
public String getContents() {
return this.contents;
}
public void setContents(String contents) {
this.contents = contents;
if(contents != null){
putBodyParameter("Contents", contents);
}
}
@Override
public Class<UpdateSpeechTemplateResponse> getResponseClass() {
return UpdateSpeechTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/model/v2021127/UpdateSpeechTemplateResponse.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.cd.model.v2021127;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cd.transform.v2021127.UpdateSpeechTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateSpeechTemplateResponse extends AcsResponse {
private Boolean success;
private String message;
private String code;
private Integer httpStatusCode;
private String requestId;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateSpeechTemplateResponse getInstance(UnmarshallerContext context) {
return UpdateSpeechTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/AddProductImageResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.AddProductImageResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddProductImageResponseUnmarshaller {
public static AddProductImageResponse unmarshall(AddProductImageResponse addProductImageResponse, UnmarshallerContext _ctx) {
addProductImageResponse.setRequestId(_ctx.stringValue("AddProductImageResponse.RequestId"));
addProductImageResponse.setSuccess(_ctx.booleanValue("AddProductImageResponse.Success"));
addProductImageResponse.setMessage(_ctx.stringValue("AddProductImageResponse.Message"));
addProductImageResponse.setCode(_ctx.stringValue("AddProductImageResponse.Code"));
addProductImageResponse.setHttpStatusCode(_ctx.integerValue("AddProductImageResponse.HttpStatusCode"));
addProductImageResponse.setData(_ctx.stringValue("AddProductImageResponse.Data"));
return addProductImageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/AddShopToGroupResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.AddShopToGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddShopToGroupResponseUnmarshaller {
public static AddShopToGroupResponse unmarshall(AddShopToGroupResponse addShopToGroupResponse, UnmarshallerContext _ctx) {
addShopToGroupResponse.setRequestId(_ctx.stringValue("AddShopToGroupResponse.RequestId"));
addShopToGroupResponse.setSuccess(_ctx.booleanValue("AddShopToGroupResponse.Success"));
addShopToGroupResponse.setMessage(_ctx.stringValue("AddShopToGroupResponse.Message"));
addShopToGroupResponse.setCode(_ctx.stringValue("AddShopToGroupResponse.Code"));
addShopToGroupResponse.setHttpStatusCode(_ctx.integerValue("AddShopToGroupResponse.HttpStatusCode"));
addShopToGroupResponse.setData(_ctx.stringValue("AddShopToGroupResponse.Data"));
return addShopToGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/AddShopsToGroupResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.AddShopsToGroupResponse;
import com.aliyuncs.cd.model.v2021127.AddShopsToGroupResponse.DataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddShopsToGroupResponseUnmarshaller {
public static AddShopsToGroupResponse unmarshall(AddShopsToGroupResponse addShopsToGroupResponse, UnmarshallerContext _ctx) {
addShopsToGroupResponse.setRequestId(_ctx.stringValue("AddShopsToGroupResponse.RequestId"));
addShopsToGroupResponse.setSuccess(_ctx.booleanValue("AddShopsToGroupResponse.Success"));
addShopsToGroupResponse.setMessage(_ctx.stringValue("AddShopsToGroupResponse.Message"));
addShopsToGroupResponse.setCode(_ctx.stringValue("AddShopsToGroupResponse.Code"));
addShopsToGroupResponse.setHttpStatusCode(_ctx.integerValue("AddShopsToGroupResponse.HttpStatusCode"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("AddShopsToGroupResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setShopId(_ctx.stringValue("AddShopsToGroupResponse.Data["+ i +"].ShopId"));
dataItem.setCode(_ctx.stringValue("AddShopsToGroupResponse.Data["+ i +"].Code"));
dataItem.setMessage(_ctx.stringValue("AddShopsToGroupResponse.Data["+ i +"].Message"));
data.add(dataItem);
}
addShopsToGroupResponse.setData(data);
return addShopsToGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/BatchCreateShopGroupResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.BatchCreateShopGroupResponse;
import com.aliyuncs.cd.model.v2021127.BatchCreateShopGroupResponse.DataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchCreateShopGroupResponseUnmarshaller {
public static BatchCreateShopGroupResponse unmarshall(BatchCreateShopGroupResponse batchCreateShopGroupResponse, UnmarshallerContext _ctx) {
batchCreateShopGroupResponse.setRequestId(_ctx.stringValue("BatchCreateShopGroupResponse.RequestId"));
batchCreateShopGroupResponse.setSuccess(_ctx.booleanValue("BatchCreateShopGroupResponse.Success"));
batchCreateShopGroupResponse.setMessage(_ctx.stringValue("BatchCreateShopGroupResponse.Message"));
batchCreateShopGroupResponse.setCode(_ctx.stringValue("BatchCreateShopGroupResponse.Code"));
batchCreateShopGroupResponse.setHttpStatusCode(_ctx.integerValue("BatchCreateShopGroupResponse.HttpStatusCode"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("BatchCreateShopGroupResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setShopGroupId(_ctx.stringValue("BatchCreateShopGroupResponse.Data["+ i +"].ShopGroupId"));
dataItem.setCode(_ctx.stringValue("BatchCreateShopGroupResponse.Data["+ i +"].Code"));
dataItem.setMessage(_ctx.stringValue("BatchCreateShopGroupResponse.Data["+ i +"].Message"));
data.add(dataItem);
}
batchCreateShopGroupResponse.setData(data);
return batchCreateShopGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/BatchCreateShopResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.BatchCreateShopResponse;
import com.aliyuncs.cd.model.v2021127.BatchCreateShopResponse.DataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchCreateShopResponseUnmarshaller {
public static BatchCreateShopResponse unmarshall(BatchCreateShopResponse batchCreateShopResponse, UnmarshallerContext _ctx) {
batchCreateShopResponse.setRequestId(_ctx.stringValue("BatchCreateShopResponse.RequestId"));
batchCreateShopResponse.setSuccess(_ctx.booleanValue("BatchCreateShopResponse.Success"));
batchCreateShopResponse.setMessage(_ctx.stringValue("BatchCreateShopResponse.Message"));
batchCreateShopResponse.setCode(_ctx.stringValue("BatchCreateShopResponse.Code"));
batchCreateShopResponse.setHttpStatusCode(_ctx.integerValue("BatchCreateShopResponse.HttpStatusCode"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("BatchCreateShopResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setShopId(_ctx.stringValue("BatchCreateShopResponse.Data["+ i +"].ShopId"));
dataItem.setCode(_ctx.stringValue("BatchCreateShopResponse.Data["+ i +"].Code"));
dataItem.setMessage(_ctx.stringValue("BatchCreateShopResponse.Data["+ i +"].Message"));
data.add(dataItem);
}
batchCreateShopResponse.setData(data);
return batchCreateShopResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/BatchGetStoreTextDataResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.BatchGetStoreTextDataResponse;
import com.aliyuncs.cd.model.v2021127.BatchGetStoreTextDataResponse.DataItem;
import com.aliyuncs.cd.model.v2021127.BatchGetStoreTextDataResponse.DataItem.Container;
import com.aliyuncs.cd.model.v2021127.BatchGetStoreTextDataResponse.DataItem.Container.ContainerDataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchGetStoreTextDataResponseUnmarshaller {
public static BatchGetStoreTextDataResponse unmarshall(BatchGetStoreTextDataResponse batchGetStoreTextDataResponse, UnmarshallerContext _ctx) {
batchGetStoreTextDataResponse.setRequestId(_ctx.stringValue("BatchGetStoreTextDataResponse.RequestId"));
batchGetStoreTextDataResponse.setSuccess(_ctx.booleanValue("BatchGetStoreTextDataResponse.Success"));
batchGetStoreTextDataResponse.setMessage(_ctx.stringValue("BatchGetStoreTextDataResponse.Message"));
batchGetStoreTextDataResponse.setCode(_ctx.stringValue("BatchGetStoreTextDataResponse.Code"));
batchGetStoreTextDataResponse.setHttpStatusCode(_ctx.integerValue("BatchGetStoreTextDataResponse.HttpStatusCode"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("BatchGetStoreTextDataResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setStoreId(_ctx.stringValue("BatchGetStoreTextDataResponse.Data["+ i +"].StoreId"));
List<Container> containers = new ArrayList<Container>();
for (int j = 0; j < _ctx.lengthValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers.Length"); j++) {
Container container = new Container();
container.setType(_ctx.stringValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].Type"));
container.setTitle(_ctx.stringValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].Title"));
container.setVisible(_ctx.integerValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].Visible"));
List<ContainerDataItem> containerData = new ArrayList<ContainerDataItem>();
for (int k = 0; k < _ctx.lengthValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].ContainerData.Length"); k++) {
ContainerDataItem containerDataItem = new ContainerDataItem();
containerDataItem.setMark(_ctx.stringValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].ContainerData["+ k +"].Mark"));
containerDataItem.setText(_ctx.stringValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].ContainerData["+ k +"].Text"));
containerDataItem.setSubText(_ctx.stringValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].ContainerData["+ k +"].SubText"));
containerDataItem.setColor(_ctx.stringValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].ContainerData["+ k +"].Color"));
containerDataItem.setBold(_ctx.integerValue("BatchGetStoreTextDataResponse.Data["+ i +"].Containers["+ j +"].ContainerData["+ k +"].Bold"));
containerData.add(containerDataItem);
}
container.setContainerData(containerData);
containers.add(container);
}
dataItem.setContainers(containers);
data.add(dataItem);
}
batchGetStoreTextDataResponse.setData(data);
return batchGetStoreTextDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/BatchUpdateStoreTextDataResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.BatchUpdateStoreTextDataResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchUpdateStoreTextDataResponseUnmarshaller {
public static BatchUpdateStoreTextDataResponse unmarshall(BatchUpdateStoreTextDataResponse batchUpdateStoreTextDataResponse, UnmarshallerContext _ctx) {
batchUpdateStoreTextDataResponse.setRequestId(_ctx.stringValue("BatchUpdateStoreTextDataResponse.RequestId"));
batchUpdateStoreTextDataResponse.setSuccess(_ctx.booleanValue("BatchUpdateStoreTextDataResponse.Success"));
batchUpdateStoreTextDataResponse.setMessage(_ctx.stringValue("BatchUpdateStoreTextDataResponse.Message"));
batchUpdateStoreTextDataResponse.setCode(_ctx.stringValue("BatchUpdateStoreTextDataResponse.Code"));
batchUpdateStoreTextDataResponse.setHttpStatusCode(_ctx.integerValue("BatchUpdateStoreTextDataResponse.HttpStatusCode"));
return batchUpdateStoreTextDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/CreateLabelResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.CreateLabelResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateLabelResponseUnmarshaller {
public static CreateLabelResponse unmarshall(CreateLabelResponse createLabelResponse, UnmarshallerContext _ctx) {
createLabelResponse.setRequestId(_ctx.stringValue("CreateLabelResponse.RequestId"));
createLabelResponse.setSuccess(_ctx.booleanValue("CreateLabelResponse.Success"));
createLabelResponse.setMessage(_ctx.stringValue("CreateLabelResponse.Message"));
createLabelResponse.setCode(_ctx.stringValue("CreateLabelResponse.Code"));
createLabelResponse.setHttpStatusCode(_ctx.integerValue("CreateLabelResponse.HttpStatusCode"));
createLabelResponse.setData(_ctx.stringValue("CreateLabelResponse.Data"));
return createLabelResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/CreateMenuDataResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.CreateMenuDataResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateMenuDataResponseUnmarshaller {
public static CreateMenuDataResponse unmarshall(CreateMenuDataResponse createMenuDataResponse, UnmarshallerContext _ctx) {
createMenuDataResponse.setRequestId(_ctx.stringValue("CreateMenuDataResponse.RequestId"));
createMenuDataResponse.setSuccess(_ctx.booleanValue("CreateMenuDataResponse.Success"));
createMenuDataResponse.setMessage(_ctx.stringValue("CreateMenuDataResponse.Message"));
createMenuDataResponse.setCode(_ctx.stringValue("CreateMenuDataResponse.Code"));
createMenuDataResponse.setHttpStatusCode(_ctx.integerValue("CreateMenuDataResponse.HttpStatusCode"));
createMenuDataResponse.setData(_ctx.stringValue("CreateMenuDataResponse.Data"));
return createMenuDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/CreateShopGroupResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.CreateShopGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateShopGroupResponseUnmarshaller {
public static CreateShopGroupResponse unmarshall(CreateShopGroupResponse createShopGroupResponse, UnmarshallerContext _ctx) {
createShopGroupResponse.setRequestId(_ctx.stringValue("CreateShopGroupResponse.RequestId"));
createShopGroupResponse.setSuccess(_ctx.booleanValue("CreateShopGroupResponse.Success"));
createShopGroupResponse.setMessage(_ctx.stringValue("CreateShopGroupResponse.Message"));
createShopGroupResponse.setCode(_ctx.stringValue("CreateShopGroupResponse.Code"));
createShopGroupResponse.setHttpStatusCode(_ctx.integerValue("CreateShopGroupResponse.HttpStatusCode"));
List<String> data = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("CreateShopGroupResponse.Data.Length"); i++) {
data.add(_ctx.stringValue("CreateShopGroupResponse.Data["+ i +"]"));
}
createShopGroupResponse.setData(data);
return createShopGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/CreateShopResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.CreateShopResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateShopResponseUnmarshaller {
public static CreateShopResponse unmarshall(CreateShopResponse createShopResponse, UnmarshallerContext _ctx) {
createShopResponse.setRequestId(_ctx.stringValue("CreateShopResponse.RequestId"));
createShopResponse.setSuccess(_ctx.booleanValue("CreateShopResponse.Success"));
createShopResponse.setMessage(_ctx.stringValue("CreateShopResponse.Message"));
createShopResponse.setCode(_ctx.stringValue("CreateShopResponse.Code"));
createShopResponse.setHttpStatusCode(_ctx.integerValue("CreateShopResponse.HttpStatusCode"));
List<String> data = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("CreateShopResponse.Data.Length"); i++) {
data.add(_ctx.stringValue("CreateShopResponse.Data["+ i +"]"));
}
createShopResponse.setData(data);
return createShopResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/CreateSpeechTemplateResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.CreateSpeechTemplateResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateSpeechTemplateResponseUnmarshaller {
public static CreateSpeechTemplateResponse unmarshall(CreateSpeechTemplateResponse createSpeechTemplateResponse, UnmarshallerContext _ctx) {
createSpeechTemplateResponse.setRequestId(_ctx.stringValue("CreateSpeechTemplateResponse.RequestId"));
createSpeechTemplateResponse.setSuccess(_ctx.booleanValue("CreateSpeechTemplateResponse.Success"));
createSpeechTemplateResponse.setMessage(_ctx.stringValue("CreateSpeechTemplateResponse.Message"));
createSpeechTemplateResponse.setCode(_ctx.stringValue("CreateSpeechTemplateResponse.Code"));
createSpeechTemplateResponse.setHttpStatusCode(_ctx.integerValue("CreateSpeechTemplateResponse.HttpStatusCode"));
return createSpeechTemplateResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/DeleteLabelResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.DeleteLabelResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteLabelResponseUnmarshaller {
public static DeleteLabelResponse unmarshall(DeleteLabelResponse deleteLabelResponse, UnmarshallerContext _ctx) {
deleteLabelResponse.setRequestId(_ctx.stringValue("DeleteLabelResponse.RequestId"));
deleteLabelResponse.setSuccess(_ctx.booleanValue("DeleteLabelResponse.Success"));
deleteLabelResponse.setMessage(_ctx.stringValue("DeleteLabelResponse.Message"));
deleteLabelResponse.setCode(_ctx.stringValue("DeleteLabelResponse.Code"));
deleteLabelResponse.setHttpStatusCode(_ctx.integerValue("DeleteLabelResponse.HttpStatusCode"));
return deleteLabelResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/DeleteProductImageResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.DeleteProductImageResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteProductImageResponseUnmarshaller {
public static DeleteProductImageResponse unmarshall(DeleteProductImageResponse deleteProductImageResponse, UnmarshallerContext _ctx) {
deleteProductImageResponse.setRequestId(_ctx.stringValue("DeleteProductImageResponse.RequestId"));
deleteProductImageResponse.setSuccess(_ctx.booleanValue("DeleteProductImageResponse.Success"));
deleteProductImageResponse.setMessage(_ctx.stringValue("DeleteProductImageResponse.Message"));
deleteProductImageResponse.setCode(_ctx.stringValue("DeleteProductImageResponse.Code"));
deleteProductImageResponse.setHttpStatusCode(_ctx.integerValue("DeleteProductImageResponse.HttpStatusCode"));
deleteProductImageResponse.setData(_ctx.stringValue("DeleteProductImageResponse.Data"));
return deleteProductImageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/DeleteShopGroupResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.DeleteShopGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteShopGroupResponseUnmarshaller {
public static DeleteShopGroupResponse unmarshall(DeleteShopGroupResponse deleteShopGroupResponse, UnmarshallerContext _ctx) {
deleteShopGroupResponse.setRequestId(_ctx.stringValue("DeleteShopGroupResponse.RequestId"));
deleteShopGroupResponse.setSuccess(_ctx.booleanValue("DeleteShopGroupResponse.Success"));
deleteShopGroupResponse.setMessage(_ctx.stringValue("DeleteShopGroupResponse.Message"));
deleteShopGroupResponse.setCode(_ctx.stringValue("DeleteShopGroupResponse.Code"));
deleteShopGroupResponse.setHttpStatusCode(_ctx.integerValue("DeleteShopGroupResponse.HttpStatusCode"));
deleteShopGroupResponse.setData(_ctx.stringValue("DeleteShopGroupResponse.Data"));
return deleteShopGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/DeleteShopResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.DeleteShopResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteShopResponseUnmarshaller {
public static DeleteShopResponse unmarshall(DeleteShopResponse deleteShopResponse, UnmarshallerContext _ctx) {
deleteShopResponse.setRequestId(_ctx.stringValue("DeleteShopResponse.RequestId"));
deleteShopResponse.setSuccess(_ctx.booleanValue("DeleteShopResponse.Success"));
deleteShopResponse.setMessage(_ctx.stringValue("DeleteShopResponse.Message"));
deleteShopResponse.setCode(_ctx.stringValue("DeleteShopResponse.Code"));
deleteShopResponse.setHttpStatusCode(_ctx.integerValue("DeleteShopResponse.HttpStatusCode"));
deleteShopResponse.setData(_ctx.stringValue("DeleteShopResponse.Data"));
return deleteShopResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/DeleteSpeechTemplateResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.DeleteSpeechTemplateResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteSpeechTemplateResponseUnmarshaller {
public static DeleteSpeechTemplateResponse unmarshall(DeleteSpeechTemplateResponse deleteSpeechTemplateResponse, UnmarshallerContext _ctx) {
deleteSpeechTemplateResponse.setRequestId(_ctx.stringValue("DeleteSpeechTemplateResponse.RequestId"));
deleteSpeechTemplateResponse.setSuccess(_ctx.booleanValue("DeleteSpeechTemplateResponse.Success"));
deleteSpeechTemplateResponse.setMessage(_ctx.stringValue("DeleteSpeechTemplateResponse.Message"));
deleteSpeechTemplateResponse.setCode(_ctx.stringValue("DeleteSpeechTemplateResponse.Code"));
deleteSpeechTemplateResponse.setHttpStatusCode(_ctx.integerValue("DeleteSpeechTemplateResponse.HttpStatusCode"));
return deleteSpeechTemplateResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/GetMenuDataStatusResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.GetMenuDataStatusResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetMenuDataStatusResponseUnmarshaller {
public static GetMenuDataStatusResponse unmarshall(GetMenuDataStatusResponse getMenuDataStatusResponse, UnmarshallerContext _ctx) {
getMenuDataStatusResponse.setRequestId(_ctx.stringValue("GetMenuDataStatusResponse.RequestId"));
getMenuDataStatusResponse.setSuccess(_ctx.booleanValue("GetMenuDataStatusResponse.Success"));
getMenuDataStatusResponse.setMessage(_ctx.stringValue("GetMenuDataStatusResponse.Message"));
getMenuDataStatusResponse.setCode(_ctx.stringValue("GetMenuDataStatusResponse.Code"));
getMenuDataStatusResponse.setHttpStatusCode(_ctx.integerValue("GetMenuDataStatusResponse.HttpStatusCode"));
getMenuDataStatusResponse.setProductContainerId(_ctx.stringValue("GetMenuDataStatusResponse.ProductContainerId"));
getMenuDataStatusResponse.setBatchId(_ctx.stringValue("GetMenuDataStatusResponse.BatchId"));
getMenuDataStatusResponse.setTotal(_ctx.longValue("GetMenuDataStatusResponse.Total"));
getMenuDataStatusResponse.setFailed(_ctx.longValue("GetMenuDataStatusResponse.Failed"));
List<String> failedProductContainerList = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("GetMenuDataStatusResponse.FailedProductContainerList.Length"); i++) {
failedProductContainerList.add(_ctx.stringValue("GetMenuDataStatusResponse.FailedProductContainerList["+ i +"]"));
}
getMenuDataStatusResponse.setFailedProductContainerList(failedProductContainerList);
return getMenuDataStatusResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/GetShopGroupResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.GetShopGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetShopGroupResponseUnmarshaller {
public static GetShopGroupResponse unmarshall(GetShopGroupResponse getShopGroupResponse, UnmarshallerContext _ctx) {
getShopGroupResponse.setRequestId(_ctx.stringValue("GetShopGroupResponse.RequestId"));
getShopGroupResponse.setSuccess(_ctx.booleanValue("GetShopGroupResponse.Success"));
getShopGroupResponse.setMessage(_ctx.stringValue("GetShopGroupResponse.Message"));
getShopGroupResponse.setCode(_ctx.stringValue("GetShopGroupResponse.Code"));
getShopGroupResponse.setHttpStatusCode(_ctx.integerValue("GetShopGroupResponse.HttpStatusCode"));
getShopGroupResponse.setShopGroupId(_ctx.stringValue("GetShopGroupResponse.ShopGroupId"));
getShopGroupResponse.setShopGroupName(_ctx.stringValue("GetShopGroupResponse.ShopGroupName"));
return getShopGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/GetShopResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.GetShopResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetShopResponseUnmarshaller {
public static GetShopResponse unmarshall(GetShopResponse getShopResponse, UnmarshallerContext _ctx) {
getShopResponse.setRequestId(_ctx.stringValue("GetShopResponse.RequestId"));
getShopResponse.setSuccess(_ctx.booleanValue("GetShopResponse.Success"));
getShopResponse.setMessage(_ctx.stringValue("GetShopResponse.Message"));
getShopResponse.setCode(_ctx.stringValue("GetShopResponse.Code"));
getShopResponse.setHttpStatusCode(_ctx.integerValue("GetShopResponse.HttpStatusCode"));
getShopResponse.setShopId(_ctx.stringValue("GetShopResponse.ShopId"));
getShopResponse.setShopName(_ctx.stringValue("GetShopResponse.ShopName"));
getShopResponse.setLocation(_ctx.stringValue("GetShopResponse.Location"));
getShopResponse.setLongitude(_ctx.stringValue("GetShopResponse.Longitude"));
getShopResponse.setLatitude(_ctx.stringValue("GetShopResponse.Latitude"));
getShopResponse.setRegionAddress(_ctx.stringValue("GetShopResponse.RegionAddress"));
getShopResponse.setRegionCode(_ctx.stringValue("GetShopResponse.RegionCode"));
getShopResponse.setRemark(_ctx.stringValue("GetShopResponse.Remark"));
getShopResponse.setDeviceNum(_ctx.integerValue("GetShopResponse.DeviceNum"));
getShopResponse.setGmtCreateTime(_ctx.longValue("GetShopResponse.GmtCreateTime"));
getShopResponse.setWeekdaysStartTime(_ctx.stringValue("GetShopResponse.WeekdaysStartTime"));
getShopResponse.setWeekdaysEndTime(_ctx.stringValue("GetShopResponse.WeekdaysEndTime"));
getShopResponse.setWeekendStartTime(_ctx.stringValue("GetShopResponse.WeekendStartTime"));
getShopResponse.setWeekendEndTime(_ctx.stringValue("GetShopResponse.WeekendEndTime"));
getShopResponse.setBusinessStatus(_ctx.integerValue("GetShopResponse.BusinessStatus"));
List<String> deviceMacList = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("GetShopResponse.DeviceMacList.Length"); i++) {
deviceMacList.add(_ctx.stringValue("GetShopResponse.DeviceMacList["+ i +"]"));
}
getShopResponse.setDeviceMacList(deviceMacList);
List<String> shopGroupIds = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("GetShopResponse.ShopGroupIds.Length"); i++) {
shopGroupIds.add(_ctx.stringValue("GetShopResponse.ShopGroupIds["+ i +"]"));
}
getShopResponse.setShopGroupIds(shopGroupIds);
return getShopResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/GetSpeechTemplateResponseUnmarshaller.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.cd.transform.v2021127;
import com.aliyuncs.cd.model.v2021127.GetSpeechTemplateResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetSpeechTemplateResponseUnmarshaller {
public static GetSpeechTemplateResponse unmarshall(GetSpeechTemplateResponse getSpeechTemplateResponse, UnmarshallerContext _ctx) {
getSpeechTemplateResponse.setRequestId(_ctx.stringValue("GetSpeechTemplateResponse.RequestId"));
getSpeechTemplateResponse.setSuccess(_ctx.booleanValue("GetSpeechTemplateResponse.Success"));
getSpeechTemplateResponse.setMessage(_ctx.stringValue("GetSpeechTemplateResponse.Message"));
getSpeechTemplateResponse.setCode(_ctx.stringValue("GetSpeechTemplateResponse.Code"));
getSpeechTemplateResponse.setHttpStatusCode(_ctx.integerValue("GetSpeechTemplateResponse.HttpStatusCode"));
getSpeechTemplateResponse.setData(_ctx.stringValue("GetSpeechTemplateResponse.Data"));
return getSpeechTemplateResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/ListMenuDataResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.ListMenuDataResponse;
import com.aliyuncs.cd.model.v2021127.ListMenuDataResponse.DataItem;
import com.aliyuncs.cd.model.v2021127.ListMenuDataResponse.DataItem.ProductCombineListItem;
import com.aliyuncs.cd.model.v2021127.ListMenuDataResponse.DataItem.ProductCombineListItem.ProductItemListItem;
import com.aliyuncs.cd.model.v2021127.ListMenuDataResponse.DataItem.ProductCombineListItem.ProductItemListItem.ProductInfo;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListMenuDataResponseUnmarshaller {
public static ListMenuDataResponse unmarshall(ListMenuDataResponse listMenuDataResponse, UnmarshallerContext _ctx) {
listMenuDataResponse.setRequestId(_ctx.stringValue("ListMenuDataResponse.RequestId"));
listMenuDataResponse.setSuccess(_ctx.booleanValue("ListMenuDataResponse.Success"));
listMenuDataResponse.setMessage(_ctx.stringValue("ListMenuDataResponse.Message"));
listMenuDataResponse.setCode(_ctx.stringValue("ListMenuDataResponse.Code"));
listMenuDataResponse.setHttpStatusCode(_ctx.integerValue("ListMenuDataResponse.HttpStatusCode"));
listMenuDataResponse.setTotalCount(_ctx.longValue("ListMenuDataResponse.TotalCount"));
listMenuDataResponse.setPageNumber(_ctx.integerValue("ListMenuDataResponse.PageNumber"));
listMenuDataResponse.setPageSize(_ctx.integerValue("ListMenuDataResponse.PageSize"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("ListMenuDataResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setProductContainerId(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductContainerId"));
dataItem.setBatchId(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].BatchId"));
dataItem.setShopGroupId(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ShopGroupId"));
dataItem.setType(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].Type"));
dataItem.setPriority(_ctx.integerValue("ListMenuDataResponse.Data["+ i +"].Priority"));
List<String> shopIdList = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("ListMenuDataResponse.Data["+ i +"].ShopIdList.Length"); j++) {
shopIdList.add(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ShopIdList["+ j +"]"));
}
dataItem.setShopIdList(shopIdList);
List<ProductCombineListItem> productCombineList = new ArrayList<ProductCombineListItem>();
for (int j = 0; j < _ctx.lengthValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList.Length"); j++) {
ProductCombineListItem productCombineListItem = new ProductCombineListItem();
productCombineListItem.setOrder(_ctx.integerValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].Order"));
productCombineListItem.setName(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].Name"));
List<ProductItemListItem> productItemList = new ArrayList<ProductItemListItem>();
for (int k = 0; k < _ctx.lengthValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList.Length"); k++) {
ProductItemListItem productItemListItem = new ProductItemListItem();
productItemListItem.setOrder(_ctx.integerValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].Order"));
ProductInfo productInfo = new ProductInfo();
productInfo.setProductId(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.ProductId"));
productInfo.setChineseName(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.ChineseName"));
productInfo.setEnglishName(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.EnglishName"));
productInfo.setDescription(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.Description"));
productInfo.setIconText(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.IconText"));
productInfo.setProductType(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.ProductType"));
productInfo.setTemperature(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.Temperature"));
productInfo.setOriginalPrice(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.OriginalPrice"));
productInfo.setCurrentPrice(_ctx.stringValue("ListMenuDataResponse.Data["+ i +"].ProductCombineList["+ j +"].ProductItemList["+ k +"].ProductInfo.CurrentPrice"));
productItemListItem.setProductInfo(productInfo);
productItemList.add(productItemListItem);
}
productCombineListItem.setProductItemList(productItemList);
productCombineList.add(productCombineListItem);
}
dataItem.setProductCombineList(productCombineList);
data.add(dataItem);
}
listMenuDataResponse.setData(data);
return listMenuDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cd/1.0.0/com/aliyuncs/cd/transform/v2021127/ListShopGroupResponseUnmarshaller.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.cd.transform.v2021127;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cd.model.v2021127.ListShopGroupResponse;
import com.aliyuncs.cd.model.v2021127.ListShopGroupResponse.DataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListShopGroupResponseUnmarshaller {
public static ListShopGroupResponse unmarshall(ListShopGroupResponse listShopGroupResponse, UnmarshallerContext _ctx) {
listShopGroupResponse.setRequestId(_ctx.stringValue("ListShopGroupResponse.RequestId"));
listShopGroupResponse.setSuccess(_ctx.booleanValue("ListShopGroupResponse.Success"));
listShopGroupResponse.setMessage(_ctx.stringValue("ListShopGroupResponse.Message"));
listShopGroupResponse.setCode(_ctx.stringValue("ListShopGroupResponse.Code"));
listShopGroupResponse.setHttpStatusCode(_ctx.integerValue("ListShopGroupResponse.HttpStatusCode"));
listShopGroupResponse.setTotalCount(_ctx.longValue("ListShopGroupResponse.TotalCount"));
listShopGroupResponse.setPageNumber(_ctx.integerValue("ListShopGroupResponse.PageNumber"));
listShopGroupResponse.setPageSize(_ctx.integerValue("ListShopGroupResponse.PageSize"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("ListShopGroupResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setShopGroupId(_ctx.stringValue("ListShopGroupResponse.Data["+ i +"].ShopGroupId"));
dataItem.setShopGroupName(_ctx.stringValue("ListShopGroupResponse.Data["+ i +"].ShopGroupName"));
data.add(dataItem);
}
listShopGroupResponse.setData(data);
return listShopGroupResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.