index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEslDevicesRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeEslDevicesRequest extends RpcAcsRequest<DescribeEslDevicesResponse> {
private String extraParams;
private String type;
private String storeId;
private Integer pageNumber;
private String eslBarCode;
private Integer pageSize;
private String typeEncode;
private String eslStatus;
private Integer toBatteryLevel;
private Integer fromBatteryLevel;
public DescribeEslDevicesRequest() {
super("cloudesl", "2020-02-01", "DescribeEslDevices");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getTypeEncode() {
return this.typeEncode;
}
public void setTypeEncode(String typeEncode) {
this.typeEncode = typeEncode;
if(typeEncode != null){
putBodyParameter("TypeEncode", typeEncode);
}
}
public String getEslStatus() {
return this.eslStatus;
}
public void setEslStatus(String eslStatus) {
this.eslStatus = eslStatus;
if(eslStatus != null){
putBodyParameter("EslStatus", eslStatus);
}
}
public Integer getToBatteryLevel() {
return this.toBatteryLevel;
}
public void setToBatteryLevel(Integer toBatteryLevel) {
this.toBatteryLevel = toBatteryLevel;
if(toBatteryLevel != null){
putBodyParameter("ToBatteryLevel", toBatteryLevel.toString());
}
}
public Integer getFromBatteryLevel() {
return this.fromBatteryLevel;
}
public void setFromBatteryLevel(Integer fromBatteryLevel) {
this.fromBatteryLevel = fromBatteryLevel;
if(fromBatteryLevel != null){
putBodyParameter("FromBatteryLevel", fromBatteryLevel.toString());
}
}
@Override
public Class<DescribeEslDevicesResponse> getResponseClass() {
return DescribeEslDevicesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEslDevicesResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeEslDevicesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeEslDevicesResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private String dynamicCode;
private List<EslDeviceInfo> eslDevices;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
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 Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public List<EslDeviceInfo> getEslDevices() {
return this.eslDevices;
}
public void setEslDevices(List<EslDeviceInfo> eslDevices) {
this.eslDevices = eslDevices;
}
public static class EslDeviceInfo {
private String type;
private String storeId;
private String eslBarCode;
private String model;
private String lastCommunicateTime;
private Integer screenHeight;
private Integer screenWidth;
private Integer eslSignal;
private Integer batteryLevel;
private String eslStatus;
private String mac;
private String typeEncode;
private String layoutId;
private String layoutName;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
}
public String getModel() {
return this.model;
}
public void setModel(String model) {
this.model = model;
}
public String getLastCommunicateTime() {
return this.lastCommunicateTime;
}
public void setLastCommunicateTime(String lastCommunicateTime) {
this.lastCommunicateTime = lastCommunicateTime;
}
public Integer getScreenHeight() {
return this.screenHeight;
}
public void setScreenHeight(Integer screenHeight) {
this.screenHeight = screenHeight;
}
public Integer getScreenWidth() {
return this.screenWidth;
}
public void setScreenWidth(Integer screenWidth) {
this.screenWidth = screenWidth;
}
public Integer getEslSignal() {
return this.eslSignal;
}
public void setEslSignal(Integer eslSignal) {
this.eslSignal = eslSignal;
}
public Integer getBatteryLevel() {
return this.batteryLevel;
}
public void setBatteryLevel(Integer batteryLevel) {
this.batteryLevel = batteryLevel;
}
public String getEslStatus() {
return this.eslStatus;
}
public void setEslStatus(String eslStatus) {
this.eslStatus = eslStatus;
}
public String getMac() {
return this.mac;
}
public void setMac(String mac) {
this.mac = mac;
}
public String getTypeEncode() {
return this.typeEncode;
}
public void setTypeEncode(String typeEncode) {
this.typeEncode = typeEncode;
}
public String getLayoutId() {
return this.layoutId;
}
public void setLayoutId(String layoutId) {
this.layoutId = layoutId;
}
public String getLayoutName() {
return this.layoutName;
}
public void setLayoutName(String layoutName) {
this.layoutName = layoutName;
}
}
@Override
public DescribeEslDevicesResponse getInstance(UnmarshallerContext context) {
return DescribeEslDevicesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEslModelByTemplateVersionRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeEslModelByTemplateVersionRequest extends RpcAcsRequest<DescribeEslModelByTemplateVersionResponse> {
private Integer pageNumber;
private String templateVersion;
private Integer pageSize;
public DescribeEslModelByTemplateVersionRequest() {
super("cloudesl", "2020-02-01", "DescribeEslModelByTemplateVersion");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<DescribeEslModelByTemplateVersionResponse> getResponseClass() {
return DescribeEslModelByTemplateVersionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEslModelByTemplateVersionResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeEslModelByTemplateVersionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeEslModelByTemplateVersionResponse extends AcsResponse {
private Integer totalCount;
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private Integer pageNumber;
private Integer pageSize;
private List<SelectItemInfo> eslModels;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
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<SelectItemInfo> getEslModels() {
return this.eslModels;
}
public void setEslModels(List<SelectItemInfo> eslModels) {
this.eslModels = eslModels;
}
public static class SelectItemInfo {
private String modelId;
private String name;
private String image;
private String deviceType;
private String vendor;
private Integer screenWidth;
private Integer screenHeight;
private String eslSize;
private String eslPhysicalSize;
public String getModelId() {
return this.modelId;
}
public void setModelId(String modelId) {
this.modelId = modelId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getImage() {
return this.image;
}
public void setImage(String image) {
this.image = image;
}
public String getDeviceType() {
return this.deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
}
public String getVendor() {
return this.vendor;
}
public void setVendor(String vendor) {
this.vendor = vendor;
}
public Integer getScreenWidth() {
return this.screenWidth;
}
public void setScreenWidth(Integer screenWidth) {
this.screenWidth = screenWidth;
}
public Integer getScreenHeight() {
return this.screenHeight;
}
public void setScreenHeight(Integer screenHeight) {
this.screenHeight = screenHeight;
}
public String getEslSize() {
return this.eslSize;
}
public void setEslSize(String eslSize) {
this.eslSize = eslSize;
}
public String getEslPhysicalSize() {
return this.eslPhysicalSize;
}
public void setEslPhysicalSize(String eslPhysicalSize) {
this.eslPhysicalSize = eslPhysicalSize;
}
}
@Override
public DescribeEslModelByTemplateVersionResponse getInstance(UnmarshallerContext context) {
return DescribeEslModelByTemplateVersionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEventReasonRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeEventReasonRequest extends RpcAcsRequest<DescribeEventReasonResponse> {
private String extraParams;
public DescribeEventReasonRequest() {
super("cloudesl", "2020-02-01", "DescribeEventReason");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
@Override
public Class<DescribeEventReasonResponse> getResponseClass() {
return DescribeEventReasonResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEventReasonResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeEventReasonResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeEventReasonResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private List<EventReason> eventReasons;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public List<EventReason> getEventReasons() {
return this.eventReasons;
}
public void setEventReasons(List<EventReason> eventReasons) {
this.eventReasons = eventReasons;
}
public static class EventReason {
private String category;
private List<String> reasons;
private List<String> reasonI18ns;
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public List<String> getReasons() {
return this.reasons;
}
public void setReasons(List<String> reasons) {
this.reasons = reasons;
}
public List<String> getReasonI18ns() {
return this.reasonI18ns;
}
public void setReasonI18ns(List<String> reasonI18ns) {
this.reasonI18ns = reasonI18ns;
}
}
@Override
public DescribeEventReasonResponse getInstance(UnmarshallerContext context) {
return DescribeEventReasonResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEventsRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeEventsRequest extends RpcAcsRequest<DescribeEventsResponse> {
private String apMac;
private String storeId;
private String type;
private Integer pageNumber;
private String eslBarCode;
private Integer pageSize;
private String status;
public DescribeEventsRequest() {
super("cloudesl", "2020-02-01", "DescribeEvents");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getApMac() {
return this.apMac;
}
public void setApMac(String apMac) {
this.apMac = apMac;
if(apMac != null){
putBodyParameter("ApMac", apMac);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putBodyParameter("Status", status);
}
}
@Override
public Class<DescribeEventsResponse> getResponseClass() {
return DescribeEventsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeEventsResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeEventsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeEventsResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private Integer totalCount;
private Integer pageSize;
private Integer pageNumber;
private List<EventInfoVO> items;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public List<EventInfoVO> getItems() {
return this.items;
}
public void setItems(List<EventInfoVO> items) {
this.items = items;
}
public static class EventInfoVO {
private String eventId;
private String eventTime;
private String category;
private String eslBarCode;
private String apMac;
private String storeId;
private String itemBarCode;
private String itemId;
private String itemTitle;
private String content;
private String status;
private String staff;
private String processTime;
private String reason;
public String getEventId() {
return this.eventId;
}
public void setEventId(String eventId) {
this.eventId = eventId;
}
public String getEventTime() {
return this.eventTime;
}
public void setEventTime(String eventTime) {
this.eventTime = eventTime;
}
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
}
public String getApMac() {
return this.apMac;
}
public void setApMac(String apMac) {
this.apMac = apMac;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getItemBarCode() {
return this.itemBarCode;
}
public void setItemBarCode(String itemBarCode) {
this.itemBarCode = itemBarCode;
}
public String getItemId() {
return this.itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getItemTitle() {
return this.itemTitle;
}
public void setItemTitle(String itemTitle) {
this.itemTitle = itemTitle;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getStaff() {
return this.staff;
}
public void setStaff(String staff) {
this.staff = staff;
}
public String getProcessTime() {
return this.processTime;
}
public void setProcessTime(String processTime) {
this.processTime = processTime;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}
@Override
public DescribeEventsResponse getInstance(UnmarshallerContext context) {
return DescribeEventsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeItemMaterialsRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeItemMaterialsRequest extends RpcAcsRequest<DescribeItemMaterialsResponse> {
private String materialName;
private String materialId;
private Integer pageNumber;
private Integer pageSize;
private String barCode;
private String itemName;
public DescribeItemMaterialsRequest() {
super("cloudesl", "2020-02-01", "DescribeItemMaterials");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMaterialName() {
return this.materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
if(materialName != null){
putBodyParameter("MaterialName", materialName);
}
}
public String getMaterialId() {
return this.materialId;
}
public void setMaterialId(String materialId) {
this.materialId = materialId;
if(materialId != null){
putBodyParameter("MaterialId", materialId);
}
}
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 getBarCode() {
return this.barCode;
}
public void setBarCode(String barCode) {
this.barCode = barCode;
if(barCode != null){
putBodyParameter("BarCode", barCode);
}
}
public String getItemName() {
return this.itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
if(itemName != null){
putBodyParameter("ItemName", itemName);
}
}
@Override
public Class<DescribeItemMaterialsResponse> getResponseClass() {
return DescribeItemMaterialsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeItemMaterialsResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeItemMaterialsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeItemMaterialsResponse extends AcsResponse {
private Integer totalCount;
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private List<ItemMaterialInfo> materials;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer 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 String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public List<ItemMaterialInfo> getMaterials() {
return this.materials;
}
public void setMaterials(List<ItemMaterialInfo> materials) {
this.materials = materials;
}
public static class ItemMaterialInfo {
private String barCode;
private String itemName;
private String gmtCreate;
public String getBarCode() {
return this.barCode;
}
public void setBarCode(String barCode) {
this.barCode = barCode;
}
public String getItemName() {
return this.itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
}
@Override
public DescribeItemMaterialsResponse getInstance(UnmarshallerContext context) {
return DescribeItemMaterialsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeItemsRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeItemsRequest extends RpcAcsRequest<DescribeItemsResponse> {
private String extraParams;
private String storeId;
private Integer pageNumber;
private String itemId;
private Integer pageSize;
private String itemBarCode;
private Boolean bePromotion;
private String itemTitle;
private String skuId;
public DescribeItemsRequest() {
super("cloudesl", "2020-02-01", "DescribeItems");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getItemId() {
return this.itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
if(itemId != null){
putBodyParameter("ItemId", itemId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getItemBarCode() {
return this.itemBarCode;
}
public void setItemBarCode(String itemBarCode) {
this.itemBarCode = itemBarCode;
if(itemBarCode != null){
putBodyParameter("ItemBarCode", itemBarCode);
}
}
public Boolean getBePromotion() {
return this.bePromotion;
}
public void setBePromotion(Boolean bePromotion) {
this.bePromotion = bePromotion;
if(bePromotion != null){
putBodyParameter("BePromotion", bePromotion.toString());
}
}
public String getItemTitle() {
return this.itemTitle;
}
public void setItemTitle(String itemTitle) {
this.itemTitle = itemTitle;
if(itemTitle != null){
putBodyParameter("ItemTitle", itemTitle);
}
}
public String getSkuId() {
return this.skuId;
}
public void setSkuId(String skuId) {
this.skuId = skuId;
if(skuId != null){
putBodyParameter("SkuId", skuId);
}
}
@Override
public Class<DescribeItemsResponse> getResponseClass() {
return DescribeItemsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeItemsResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeItemsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeItemsResponse extends AcsResponse {
private String templateSceneId;
private String errorMessage;
private Boolean success;
private String message;
private String dynamicMessage;
private Integer totalCount;
private String dynamicCode;
private String requestId;
private String errorCode;
private String code;
private Integer pageNumber;
private Integer pageSize;
private List<ItemInfo> items;
public String getTemplateSceneId() {
return this.templateSceneId;
}
public void setTemplateSceneId(String templateSceneId) {
this.templateSceneId = templateSceneId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
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<ItemInfo> getItems() {
return this.items;
}
public void setItems(List<ItemInfo> items) {
this.items = items;
}
public static class ItemInfo {
private Integer actionPrice;
private String itemTitle;
private String brandName;
private String sourceCode;
private String priceUnit;
private String forestFirstId;
private String customizeFeatureF;
private String customizeFeatureA;
private String customizeFeatureK;
private String templateSceneId;
private String customizeFeatureD;
private Integer memberPrice;
private String promotionStart;
private String modelNumber;
private String categoryName;
private String customizeFeatureE;
private Integer suggestPrice;
private String saleSpec;
private String promotionText;
private String rank;
private String promotionReason;
private String customizeFeatureG;
private Integer salesPrice;
private String customizeFeatureH;
private Integer originalPrice;
private String gmtModified;
private String customizeFeatureI;
private String productionPlace;
private String customizeFeatureB;
private String itemShortTitle;
private String customizeFeatureN;
private Boolean beMember;
private String taxFee;
private String inventoryStatus;
private String supplierName;
private String itemPicUrl;
private String energyEfficiency;
private String customizeFeatureL;
private String customizeFeatureC;
private String itemId;
private String manufacturer;
private String material;
private String customizeFeatureO;
private String customizeFeatureP;
private String customizeFeatureQ;
private String customizeFeatureR;
private String customizeFeatureS;
private String customizeFeatureT;
private String customizeFeatureU;
private String customizeFeatureV;
private String customizeFeatureW;
private String customizeFeatureX;
private String customizeFeatureY;
private String customizeFeatureZ;
private String customizeFeatureJ;
private String gmtCreate;
private String customizeFeatureM;
private Boolean bePromotion;
private String skuId;
private Boolean beSourceCode;
private String forestSecondId;
private String itemQrCode;
private Integer itemInfoIndex;
private String promotionEnd;
private String itemBarCode;
private Boolean beClearance;
public Integer getActionPrice() {
return this.actionPrice;
}
public void setActionPrice(Integer actionPrice) {
this.actionPrice = actionPrice;
}
public String getItemTitle() {
return this.itemTitle;
}
public void setItemTitle(String itemTitle) {
this.itemTitle = itemTitle;
}
public String getBrandName() {
return this.brandName;
}
public void setBrandName(String brandName) {
this.brandName = brandName;
}
public String getSourceCode() {
return this.sourceCode;
}
public void setSourceCode(String sourceCode) {
this.sourceCode = sourceCode;
}
public String getPriceUnit() {
return this.priceUnit;
}
public void setPriceUnit(String priceUnit) {
this.priceUnit = priceUnit;
}
public String getForestFirstId() {
return this.forestFirstId;
}
public void setForestFirstId(String forestFirstId) {
this.forestFirstId = forestFirstId;
}
public String getCustomizeFeatureF() {
return this.customizeFeatureF;
}
public void setCustomizeFeatureF(String customizeFeatureF) {
this.customizeFeatureF = customizeFeatureF;
}
public String getCustomizeFeatureA() {
return this.customizeFeatureA;
}
public void setCustomizeFeatureA(String customizeFeatureA) {
this.customizeFeatureA = customizeFeatureA;
}
public String getCustomizeFeatureK() {
return this.customizeFeatureK;
}
public void setCustomizeFeatureK(String customizeFeatureK) {
this.customizeFeatureK = customizeFeatureK;
}
public String getTemplateSceneId() {
return this.templateSceneId;
}
public void setTemplateSceneId(String templateSceneId) {
this.templateSceneId = templateSceneId;
}
public String getCustomizeFeatureD() {
return this.customizeFeatureD;
}
public void setCustomizeFeatureD(String customizeFeatureD) {
this.customizeFeatureD = customizeFeatureD;
}
public Integer getMemberPrice() {
return this.memberPrice;
}
public void setMemberPrice(Integer memberPrice) {
this.memberPrice = memberPrice;
}
public String getPromotionStart() {
return this.promotionStart;
}
public void setPromotionStart(String promotionStart) {
this.promotionStart = promotionStart;
}
public String getModelNumber() {
return this.modelNumber;
}
public void setModelNumber(String modelNumber) {
this.modelNumber = modelNumber;
}
public String getCategoryName() {
return this.categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public String getCustomizeFeatureE() {
return this.customizeFeatureE;
}
public void setCustomizeFeatureE(String customizeFeatureE) {
this.customizeFeatureE = customizeFeatureE;
}
public Integer getSuggestPrice() {
return this.suggestPrice;
}
public void setSuggestPrice(Integer suggestPrice) {
this.suggestPrice = suggestPrice;
}
public String getSaleSpec() {
return this.saleSpec;
}
public void setSaleSpec(String saleSpec) {
this.saleSpec = saleSpec;
}
public String getPromotionText() {
return this.promotionText;
}
public void setPromotionText(String promotionText) {
this.promotionText = promotionText;
}
public String getRank() {
return this.rank;
}
public void setRank(String rank) {
this.rank = rank;
}
public String getPromotionReason() {
return this.promotionReason;
}
public void setPromotionReason(String promotionReason) {
this.promotionReason = promotionReason;
}
public String getCustomizeFeatureG() {
return this.customizeFeatureG;
}
public void setCustomizeFeatureG(String customizeFeatureG) {
this.customizeFeatureG = customizeFeatureG;
}
public Integer getSalesPrice() {
return this.salesPrice;
}
public void setSalesPrice(Integer salesPrice) {
this.salesPrice = salesPrice;
}
public String getCustomizeFeatureH() {
return this.customizeFeatureH;
}
public void setCustomizeFeatureH(String customizeFeatureH) {
this.customizeFeatureH = customizeFeatureH;
}
public Integer getOriginalPrice() {
return this.originalPrice;
}
public void setOriginalPrice(Integer originalPrice) {
this.originalPrice = originalPrice;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getCustomizeFeatureI() {
return this.customizeFeatureI;
}
public void setCustomizeFeatureI(String customizeFeatureI) {
this.customizeFeatureI = customizeFeatureI;
}
public String getProductionPlace() {
return this.productionPlace;
}
public void setProductionPlace(String productionPlace) {
this.productionPlace = productionPlace;
}
public String getCustomizeFeatureB() {
return this.customizeFeatureB;
}
public void setCustomizeFeatureB(String customizeFeatureB) {
this.customizeFeatureB = customizeFeatureB;
}
public String getItemShortTitle() {
return this.itemShortTitle;
}
public void setItemShortTitle(String itemShortTitle) {
this.itemShortTitle = itemShortTitle;
}
public String getCustomizeFeatureN() {
return this.customizeFeatureN;
}
public void setCustomizeFeatureN(String customizeFeatureN) {
this.customizeFeatureN = customizeFeatureN;
}
public Boolean getBeMember() {
return this.beMember;
}
public void setBeMember(Boolean beMember) {
this.beMember = beMember;
}
public String getTaxFee() {
return this.taxFee;
}
public void setTaxFee(String taxFee) {
this.taxFee = taxFee;
}
public String getInventoryStatus() {
return this.inventoryStatus;
}
public void setInventoryStatus(String inventoryStatus) {
this.inventoryStatus = inventoryStatus;
}
public String getSupplierName() {
return this.supplierName;
}
public void setSupplierName(String supplierName) {
this.supplierName = supplierName;
}
public String getItemPicUrl() {
return this.itemPicUrl;
}
public void setItemPicUrl(String itemPicUrl) {
this.itemPicUrl = itemPicUrl;
}
public String getEnergyEfficiency() {
return this.energyEfficiency;
}
public void setEnergyEfficiency(String energyEfficiency) {
this.energyEfficiency = energyEfficiency;
}
public String getCustomizeFeatureL() {
return this.customizeFeatureL;
}
public void setCustomizeFeatureL(String customizeFeatureL) {
this.customizeFeatureL = customizeFeatureL;
}
public String getCustomizeFeatureC() {
return this.customizeFeatureC;
}
public void setCustomizeFeatureC(String customizeFeatureC) {
this.customizeFeatureC = customizeFeatureC;
}
public String getItemId() {
return this.itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getManufacturer() {
return this.manufacturer;
}
public void setManufacturer(String manufacturer) {
this.manufacturer = manufacturer;
}
public String getMaterial() {
return this.material;
}
public void setMaterial(String material) {
this.material = material;
}
public String getCustomizeFeatureO() {
return this.customizeFeatureO;
}
public void setCustomizeFeatureO(String customizeFeatureO) {
this.customizeFeatureO = customizeFeatureO;
}
public String getCustomizeFeatureP() {
return this.customizeFeatureP;
}
public void setCustomizeFeatureP(String customizeFeatureP) {
this.customizeFeatureP = customizeFeatureP;
}
public String getCustomizeFeatureQ() {
return this.customizeFeatureQ;
}
public void setCustomizeFeatureQ(String customizeFeatureQ) {
this.customizeFeatureQ = customizeFeatureQ;
}
public String getCustomizeFeatureR() {
return this.customizeFeatureR;
}
public void setCustomizeFeatureR(String customizeFeatureR) {
this.customizeFeatureR = customizeFeatureR;
}
public String getCustomizeFeatureS() {
return this.customizeFeatureS;
}
public void setCustomizeFeatureS(String customizeFeatureS) {
this.customizeFeatureS = customizeFeatureS;
}
public String getCustomizeFeatureT() {
return this.customizeFeatureT;
}
public void setCustomizeFeatureT(String customizeFeatureT) {
this.customizeFeatureT = customizeFeatureT;
}
public String getCustomizeFeatureU() {
return this.customizeFeatureU;
}
public void setCustomizeFeatureU(String customizeFeatureU) {
this.customizeFeatureU = customizeFeatureU;
}
public String getCustomizeFeatureV() {
return this.customizeFeatureV;
}
public void setCustomizeFeatureV(String customizeFeatureV) {
this.customizeFeatureV = customizeFeatureV;
}
public String getCustomizeFeatureW() {
return this.customizeFeatureW;
}
public void setCustomizeFeatureW(String customizeFeatureW) {
this.customizeFeatureW = customizeFeatureW;
}
public String getCustomizeFeatureX() {
return this.customizeFeatureX;
}
public void setCustomizeFeatureX(String customizeFeatureX) {
this.customizeFeatureX = customizeFeatureX;
}
public String getCustomizeFeatureY() {
return this.customizeFeatureY;
}
public void setCustomizeFeatureY(String customizeFeatureY) {
this.customizeFeatureY = customizeFeatureY;
}
public String getCustomizeFeatureZ() {
return this.customizeFeatureZ;
}
public void setCustomizeFeatureZ(String customizeFeatureZ) {
this.customizeFeatureZ = customizeFeatureZ;
}
public String getCustomizeFeatureJ() {
return this.customizeFeatureJ;
}
public void setCustomizeFeatureJ(String customizeFeatureJ) {
this.customizeFeatureJ = customizeFeatureJ;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getCustomizeFeatureM() {
return this.customizeFeatureM;
}
public void setCustomizeFeatureM(String customizeFeatureM) {
this.customizeFeatureM = customizeFeatureM;
}
public Boolean getBePromotion() {
return this.bePromotion;
}
public void setBePromotion(Boolean bePromotion) {
this.bePromotion = bePromotion;
}
public String getSkuId() {
return this.skuId;
}
public void setSkuId(String skuId) {
this.skuId = skuId;
}
public Boolean getBeSourceCode() {
return this.beSourceCode;
}
public void setBeSourceCode(Boolean beSourceCode) {
this.beSourceCode = beSourceCode;
}
public String getForestSecondId() {
return this.forestSecondId;
}
public void setForestSecondId(String forestSecondId) {
this.forestSecondId = forestSecondId;
}
public String getItemQrCode() {
return this.itemQrCode;
}
public void setItemQrCode(String itemQrCode) {
this.itemQrCode = itemQrCode;
}
public Integer getItemInfoIndex() {
return this.itemInfoIndex;
}
public void setItemInfoIndex(Integer itemInfoIndex) {
this.itemInfoIndex = itemInfoIndex;
}
public String getPromotionEnd() {
return this.promotionEnd;
}
public void setPromotionEnd(String promotionEnd) {
this.promotionEnd = promotionEnd;
}
public String getItemBarCode() {
return this.itemBarCode;
}
public void setItemBarCode(String itemBarCode) {
this.itemBarCode = itemBarCode;
}
public Boolean getBeClearance() {
return this.beClearance;
}
public void setBeClearance(Boolean beClearance) {
this.beClearance = beClearance;
}
}
@Override
public DescribeItemsResponse getInstance(UnmarshallerContext context) {
return DescribeItemsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeMaterialsRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeMaterialsRequest extends RpcAcsRequest<DescribeMaterialsResponse> {
private String source;
private Integer type;
private String materialId;
private Integer pageNumber;
private Integer pageSize;
private String size;
private String name;
public DescribeMaterialsRequest() {
super("cloudesl", "2020-02-01", "DescribeMaterials");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
if(source != null){
putBodyParameter("Source", source);
}
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type.toString());
}
}
public String getMaterialId() {
return this.materialId;
}
public void setMaterialId(String materialId) {
this.materialId = materialId;
if(materialId != null){
putBodyParameter("MaterialId", materialId);
}
}
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 getSize() {
return this.size;
}
public void setSize(String size) {
this.size = size;
if(size != null){
putBodyParameter("Size", size);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putBodyParameter("Name", name);
}
}
@Override
public Class<DescribeMaterialsResponse> getResponseClass() {
return DescribeMaterialsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeMaterialsResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeMaterialsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeMaterialsResponse extends AcsResponse {
private Integer totalCount;
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private List<Material> materials;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer 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 String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public List<Material> getMaterials() {
return this.materials;
}
public void setMaterials(List<Material> materials) {
this.materials = materials;
}
public static class Material {
private String materialId;
private String size;
private Integer period;
private String content;
private String thumbnail;
private Integer type;
private String source;
private String name;
public String getMaterialId() {
return this.materialId;
}
public void setMaterialId(String materialId) {
this.materialId = materialId;
}
public String getSize() {
return this.size;
}
public void setSize(String size) {
this.size = size;
}
public Integer getPeriod() {
return this.period;
}
public void setPeriod(Integer period) {
this.period = period;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getThumbnail() {
return this.thumbnail;
}
public void setThumbnail(String thumbnail) {
this.thumbnail = thumbnail;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
@Override
public DescribeMaterialsResponse getInstance(UnmarshallerContext context) {
return DescribeMaterialsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeNotificationConfigRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeNotificationConfigRequest extends RpcAcsRequest<DescribeNotificationConfigResponse> {
public DescribeNotificationConfigRequest() {
super("cloudesl", "2020-02-01", "DescribeNotificationConfig");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<DescribeNotificationConfigResponse> getResponseClass() {
return DescribeNotificationConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeNotificationConfigResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeNotificationConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeNotificationConfigResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private String topic;
private String groupId;
private String endpoint;
private String tag;
private Boolean enable;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
}
@Override
public DescribeNotificationConfigResponse getInstance(UnmarshallerContext context) {
return DescribeNotificationConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeStoreByTemplateVersionRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeStoreByTemplateVersionRequest extends RpcAcsRequest<DescribeStoreByTemplateVersionResponse> {
private String templateVersion;
public DescribeStoreByTemplateVersionRequest() {
super("cloudesl", "2020-02-01", "DescribeStoreByTemplateVersion");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
@Override
public Class<DescribeStoreByTemplateVersionResponse> getResponseClass() {
return DescribeStoreByTemplateVersionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeStoreByTemplateVersionResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeStoreByTemplateVersionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStoreByTemplateVersionResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private List<SelectItemInfo> stores;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public List<SelectItemInfo> getStores() {
return this.stores;
}
public void setStores(List<SelectItemInfo> stores) {
this.stores = stores;
}
public static class SelectItemInfo {
private String storeName;
private String storeId;
private String parentId;
private String userStoreCode;
private String gmtModified;
private String phone;
private String level;
private String templateVersion;
private String timeZone;
public String getStoreName() {
return this.storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
public String getUserStoreCode() {
return this.userStoreCode;
}
public void setUserStoreCode(String userStoreCode) {
this.userStoreCode = userStoreCode;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getLevel() {
return this.level;
}
public void setLevel(String level) {
this.level = level;
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
}
public String getTimeZone() {
return this.timeZone;
}
public void setTimeZone(String timeZone) {
this.timeZone = timeZone;
}
}
@Override
public DescribeStoreByTemplateVersionResponse getInstance(UnmarshallerContext context) {
return DescribeStoreByTemplateVersionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeStoreConfigRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeStoreConfigRequest extends RpcAcsRequest<DescribeStoreConfigResponse> {
private String extraParams;
private String storeId;
public DescribeStoreConfigRequest() {
super("cloudesl", "2020-02-01", "DescribeStoreConfig");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
@Override
public Class<DescribeStoreConfigResponse> getResponseClass() {
return DescribeStoreConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeStoreConfigResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeStoreConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStoreConfigResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private StoreConfigInfo storeConfigInfo;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public StoreConfigInfo getStoreConfigInfo() {
return this.storeConfigInfo;
}
public void setStoreConfigInfo(StoreConfigInfo storeConfigInfo) {
this.storeConfigInfo = storeConfigInfo;
}
public static class StoreConfigInfo {
private String storeId;
private Boolean enableNotification;
private String notificationWebHook;
private String notificationSilentTimes;
private List<SubscribeContent> subscribeContents;
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public Boolean getEnableNotification() {
return this.enableNotification;
}
public void setEnableNotification(Boolean enableNotification) {
this.enableNotification = enableNotification;
}
public String getNotificationWebHook() {
return this.notificationWebHook;
}
public void setNotificationWebHook(String notificationWebHook) {
this.notificationWebHook = notificationWebHook;
}
public String getNotificationSilentTimes() {
return this.notificationSilentTimes;
}
public void setNotificationSilentTimes(String notificationSilentTimes) {
this.notificationSilentTimes = notificationSilentTimes;
}
public List<SubscribeContent> getSubscribeContents() {
return this.subscribeContents;
}
public void setSubscribeContents(List<SubscribeContent> subscribeContents) {
this.subscribeContents = subscribeContents;
}
public static class SubscribeContent {
private String category;
private Boolean enable;
private String threshold;
private Boolean atAll;
private String atMobileList;
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
}
public String getThreshold() {
return this.threshold;
}
public void setThreshold(String threshold) {
this.threshold = threshold;
}
public Boolean getAtAll() {
return this.atAll;
}
public void setAtAll(Boolean atAll) {
this.atAll = atAll;
}
public String getAtMobileList() {
return this.atMobileList;
}
public void setAtMobileList(String atMobileList) {
this.atMobileList = atMobileList;
}
}
}
@Override
public DescribeStoreConfigResponse getInstance(UnmarshallerContext context) {
return DescribeStoreConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeStoresRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeStoresRequest extends RpcAcsRequest<DescribeStoresResponse> {
private String extraParams;
private String storeName;
private String storeId;
private Integer pageNumber;
private String fromDate;
private String templateVersion;
private String toDate;
private Integer pageSize;
private String userStoreCode;
public DescribeStoresRequest() {
super("cloudesl", "2020-02-01", "DescribeStores");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getStoreName() {
return this.storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
if(storeName != null){
putBodyParameter("StoreName", storeName);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getFromDate() {
return this.fromDate;
}
public void setFromDate(String fromDate) {
this.fromDate = fromDate;
if(fromDate != null){
putBodyParameter("FromDate", fromDate);
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public String getToDate() {
return this.toDate;
}
public void setToDate(String toDate) {
this.toDate = toDate;
if(toDate != null){
putBodyParameter("ToDate", toDate);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getUserStoreCode() {
return this.userStoreCode;
}
public void setUserStoreCode(String userStoreCode) {
this.userStoreCode = userStoreCode;
if(userStoreCode != null){
putBodyParameter("UserStoreCode", userStoreCode);
}
}
@Override
public Class<DescribeStoresResponse> getResponseClass() {
return DescribeStoresResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeStoresResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeStoresResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeStoresResponse extends AcsResponse {
private String errorMessage;
private String errorCode;
private Integer totalCount;
private String message;
private Integer pageSize;
private String dynamicCode;
private String code;
private Integer pageNumber;
private String dynamicMessage;
private String requestId;
private Boolean success;
private List<StoreInfo> stores;
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<StoreInfo> getStores() {
return this.stores;
}
public void setStores(List<StoreInfo> stores) {
this.stores = stores;
}
public static class StoreInfo {
private String storeName;
private String storeId;
private String gmtCreate;
private String parentId;
private String userStoreCode;
private String gmtModified;
private String phone;
private String level;
private String templateVersion;
private String timeZone;
public String getStoreName() {
return this.storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
public String getUserStoreCode() {
return this.userStoreCode;
}
public void setUserStoreCode(String userStoreCode) {
this.userStoreCode = userStoreCode;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getLevel() {
return this.level;
}
public void setLevel(String level) {
this.level = level;
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
}
public String getTimeZone() {
return this.timeZone;
}
public void setTimeZone(String timeZone) {
this.timeZone = timeZone;
}
}
@Override
public DescribeStoresResponse getInstance(UnmarshallerContext context) {
return DescribeStoresResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeTemplateByModelRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeTemplateByModelRequest extends RpcAcsRequest<DescribeTemplateByModelResponse> {
private String eslSize;
private String deviceType;
private Integer pageNumber;
private String templateVersion;
private Integer pageSize;
public DescribeTemplateByModelRequest() {
super("cloudesl", "2020-02-01", "DescribeTemplateByModel");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getEslSize() {
return this.eslSize;
}
public void setEslSize(String eslSize) {
this.eslSize = eslSize;
if(eslSize != null){
putBodyParameter("EslSize", eslSize);
}
}
public String getDeviceType() {
return this.deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
if(deviceType != null){
putBodyParameter("DeviceType", deviceType);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<DescribeTemplateByModelResponse> getResponseClass() {
return DescribeTemplateByModelResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeTemplateByModelResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeTemplateByModelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeTemplateByModelResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private Integer totalCount;
private Integer pageSize;
private Integer pageNumber;
private List<SelectItemInfo> items;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public List<SelectItemInfo> getItems() {
return this.items;
}
public void setItems(List<SelectItemInfo> items) {
this.items = items;
}
public static class SelectItemInfo {
private String basePicture;
private String templateId;
private String templateName;
private String eslSize;
private String eslType;
private Long width;
private Long height;
private String templateVersion;
private String layout;
private String scene;
private String brand;
private String templateSceneId;
public String getBasePicture() {
return this.basePicture;
}
public void setBasePicture(String basePicture) {
this.basePicture = basePicture;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getTemplateName() {
return this.templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
}
public String getEslSize() {
return this.eslSize;
}
public void setEslSize(String eslSize) {
this.eslSize = eslSize;
}
public String getEslType() {
return this.eslType;
}
public void setEslType(String eslType) {
this.eslType = eslType;
}
public Long getWidth() {
return this.width;
}
public void setWidth(Long width) {
this.width = width;
}
public Long getHeight() {
return this.height;
}
public void setHeight(Long height) {
this.height = height;
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
}
public String getLayout() {
return this.layout;
}
public void setLayout(String layout) {
this.layout = layout;
}
public String getScene() {
return this.scene;
}
public void setScene(String scene) {
this.scene = scene;
}
public String getBrand() {
return this.brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public String getTemplateSceneId() {
return this.templateSceneId;
}
public void setTemplateSceneId(String templateSceneId) {
this.templateSceneId = templateSceneId;
}
}
@Override
public DescribeTemplateByModelResponse getInstance(UnmarshallerContext context) {
return DescribeTemplateByModelResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeUserLogRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserLogRequest extends RpcAcsRequest<DescribeUserLogResponse> {
private String extraParams;
private String storeId;
private String userId;
private Integer pageNumber;
private String fromDate;
private String operationStatus;
private String toDate;
private String eslBarCode;
private Integer pageSize;
private String itemBarCode;
private String itemShortTitle;
private String operationType;
private String logId;
public DescribeUserLogRequest() {
super("cloudesl", "2020-02-01", "DescribeUserLog");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getFromDate() {
return this.fromDate;
}
public void setFromDate(String fromDate) {
this.fromDate = fromDate;
if(fromDate != null){
putBodyParameter("FromDate", fromDate);
}
}
public String getOperationStatus() {
return this.operationStatus;
}
public void setOperationStatus(String operationStatus) {
this.operationStatus = operationStatus;
if(operationStatus != null){
putBodyParameter("OperationStatus", operationStatus);
}
}
public String getToDate() {
return this.toDate;
}
public void setToDate(String toDate) {
this.toDate = toDate;
if(toDate != null){
putBodyParameter("ToDate", toDate);
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getItemBarCode() {
return this.itemBarCode;
}
public void setItemBarCode(String itemBarCode) {
this.itemBarCode = itemBarCode;
if(itemBarCode != null){
putBodyParameter("ItemBarCode", itemBarCode);
}
}
public String getItemShortTitle() {
return this.itemShortTitle;
}
public void setItemShortTitle(String itemShortTitle) {
this.itemShortTitle = itemShortTitle;
if(itemShortTitle != null){
putBodyParameter("ItemShortTitle", itemShortTitle);
}
}
public String getOperationType() {
return this.operationType;
}
public void setOperationType(String operationType) {
this.operationType = operationType;
if(operationType != null){
putBodyParameter("OperationType", operationType);
}
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
if(logId != null){
putBodyParameter("LogId", logId);
}
}
@Override
public Class<DescribeUserLogResponse> getResponseClass() {
return DescribeUserLogResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeUserLogResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeUserLogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserLogResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private Integer pageSize;
private Integer pageNumber;
private Integer totalCount;
private String dynamicCode;
private List<UserLogInfo> userLogs;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public List<UserLogInfo> getUserLogs() {
return this.userLogs;
}
public void setUserLogs(List<UserLogInfo> userLogs) {
this.userLogs = userLogs;
}
public static class UserLogInfo {
private String eslBarCode;
private String operationSendTime;
private String actionPrice;
private String userId;
private String priceUnit;
private String resultCode;
private String itemId;
private String gmtModified;
private String operationType;
private String operationResponseTime;
private String operationStatus;
private String storeId;
private String itemShortTitle;
private String logId;
private Boolean bePromotion;
private String gmtCreate;
private Integer eslSignal;
private String spendTime;
private String itemBarCode;
private String i18nResultKey;
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
}
public String getOperationSendTime() {
return this.operationSendTime;
}
public void setOperationSendTime(String operationSendTime) {
this.operationSendTime = operationSendTime;
}
public String getActionPrice() {
return this.actionPrice;
}
public void setActionPrice(String actionPrice) {
this.actionPrice = actionPrice;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPriceUnit() {
return this.priceUnit;
}
public void setPriceUnit(String priceUnit) {
this.priceUnit = priceUnit;
}
public String getResultCode() {
return this.resultCode;
}
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public String getItemId() {
return this.itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getOperationType() {
return this.operationType;
}
public void setOperationType(String operationType) {
this.operationType = operationType;
}
public String getOperationResponseTime() {
return this.operationResponseTime;
}
public void setOperationResponseTime(String operationResponseTime) {
this.operationResponseTime = operationResponseTime;
}
public String getOperationStatus() {
return this.operationStatus;
}
public void setOperationStatus(String operationStatus) {
this.operationStatus = operationStatus;
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
public String getItemShortTitle() {
return this.itemShortTitle;
}
public void setItemShortTitle(String itemShortTitle) {
this.itemShortTitle = itemShortTitle;
}
public String getLogId() {
return this.logId;
}
public void setLogId(String logId) {
this.logId = logId;
}
public Boolean getBePromotion() {
return this.bePromotion;
}
public void setBePromotion(Boolean bePromotion) {
this.bePromotion = bePromotion;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Integer getEslSignal() {
return this.eslSignal;
}
public void setEslSignal(Integer eslSignal) {
this.eslSignal = eslSignal;
}
public String getSpendTime() {
return this.spendTime;
}
public void setSpendTime(String spendTime) {
this.spendTime = spendTime;
}
public String getItemBarCode() {
return this.itemBarCode;
}
public void setItemBarCode(String itemBarCode) {
this.itemBarCode = itemBarCode;
}
public String getI18nResultKey() {
return this.i18nResultKey;
}
public void setI18nResultKey(String i18nResultKey) {
this.i18nResultKey = i18nResultKey;
}
}
@Override
public DescribeUserLogResponse getInstance(UnmarshallerContext context) {
return DescribeUserLogResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeUsersRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUsersRequest extends RpcAcsRequest<DescribeUsersResponse> {
private String extraParams;
private String userId;
private Integer pageNumber;
private Integer pageSize;
private String userType;
private String userName;
public DescribeUsersRequest() {
super("cloudesl", "2020-02-01", "DescribeUsers");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
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 getUserType() {
return this.userType;
}
public void setUserType(String userType) {
this.userType = userType;
if(userType != null){
putBodyParameter("UserType", userType);
}
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
if(userName != null){
putBodyParameter("UserName", userName);
}
}
@Override
public Class<DescribeUsersResponse> getResponseClass() {
return DescribeUsersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/DescribeUsersResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.DescribeUsersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUsersResponse extends AcsResponse {
private String errorMessage;
private String errorCode;
private String message;
private Integer pageNumber;
private String dynamicCode;
private String code;
private Integer totalCount;
private String dynamicMessage;
private String requestId;
private Boolean success;
private Integer pageSize;
private List<UserInfo> users;
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<UserInfo> getUsers() {
return this.users;
}
public void setUsers(List<UserInfo> users) {
this.users = users;
}
public static class UserInfo {
private String stores;
private String userName;
private String userId;
private String userType;
private String ownerId;
private String bid;
private List<DingTalkInfo> dingTalkInfos;
public String getStores() {
return this.stores;
}
public void setStores(String stores) {
this.stores = stores;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserType() {
return this.userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
public String getOwnerId() {
return this.ownerId;
}
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
public String getBid() {
return this.bid;
}
public void setBid(String bid) {
this.bid = bid;
}
public List<DingTalkInfo> getDingTalkInfos() {
return this.dingTalkInfos;
}
public void setDingTalkInfos(List<DingTalkInfo> dingTalkInfos) {
this.dingTalkInfos = dingTalkInfos;
}
public static class DingTalkInfo {
private String dingTalkCompanyId;
private String dingTalkUserId;
public String getDingTalkCompanyId() {
return this.dingTalkCompanyId;
}
public void setDingTalkCompanyId(String dingTalkCompanyId) {
this.dingTalkCompanyId = dingTalkCompanyId;
}
public String getDingTalkUserId() {
return this.dingTalkUserId;
}
public void setDingTalkUserId(String dingTalkUserId) {
this.dingTalkUserId = dingTalkUserId;
}
}
}
@Override
public DescribeUsersResponse getInstance(UnmarshallerContext context) {
return DescribeUsersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/ExportEslDevicesRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class ExportEslDevicesRequest extends RpcAcsRequest<ExportEslDevicesResponse> {
private String extraParams;
private String language;
private String type;
private String storeId;
private String eslBarCode;
private String typeEncode;
private String eslStatus;
private Integer toBatteryLevel;
private String levelLower;
private Integer fromBatteryLevel;
private String levelOrder;
public ExportEslDevicesRequest() {
super("cloudesl", "2020-02-01", "ExportEslDevices");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getLanguage() {
return this.language;
}
public void setLanguage(String language) {
this.language = language;
if(language != null){
putBodyParameter("Language", language);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
public String getTypeEncode() {
return this.typeEncode;
}
public void setTypeEncode(String typeEncode) {
this.typeEncode = typeEncode;
if(typeEncode != null){
putBodyParameter("TypeEncode", typeEncode);
}
}
public String getEslStatus() {
return this.eslStatus;
}
public void setEslStatus(String eslStatus) {
this.eslStatus = eslStatus;
if(eslStatus != null){
putBodyParameter("EslStatus", eslStatus);
}
}
public Integer getToBatteryLevel() {
return this.toBatteryLevel;
}
public void setToBatteryLevel(Integer toBatteryLevel) {
this.toBatteryLevel = toBatteryLevel;
if(toBatteryLevel != null){
putBodyParameter("ToBatteryLevel", toBatteryLevel.toString());
}
}
public String getLevelLower() {
return this.levelLower;
}
public void setLevelLower(String levelLower) {
this.levelLower = levelLower;
if(levelLower != null){
putBodyParameter("LevelLower", levelLower);
}
}
public Integer getFromBatteryLevel() {
return this.fromBatteryLevel;
}
public void setFromBatteryLevel(Integer fromBatteryLevel) {
this.fromBatteryLevel = fromBatteryLevel;
if(fromBatteryLevel != null){
putBodyParameter("FromBatteryLevel", fromBatteryLevel.toString());
}
}
public String getLevelOrder() {
return this.levelOrder;
}
public void setLevelOrder(String levelOrder) {
this.levelOrder = levelOrder;
if(levelOrder != null){
putBodyParameter("LevelOrder", levelOrder);
}
}
@Override
public Class<ExportEslDevicesResponse> getResponseClass() {
return ExportEslDevicesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/ExportEslDevicesResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.ExportEslDevicesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ExportEslDevicesResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private String downloadAddress;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDownloadAddress() {
return this.downloadAddress;
}
public void setDownloadAddress(String downloadAddress) {
this.downloadAddress = downloadAddress;
}
@Override
public ExportEslDevicesResponse getInstance(UnmarshallerContext context) {
return ExportEslDevicesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetAddMaterialStatusRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class GetAddMaterialStatusRequest extends RpcAcsRequest<GetAddMaterialStatusResponse> {
public GetAddMaterialStatusRequest() {
super("cloudesl", "2020-02-01", "GetAddMaterialStatus");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<GetAddMaterialStatusResponse> getResponseClass() {
return GetAddMaterialStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetAddMaterialStatusResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.GetAddMaterialStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAddMaterialStatusResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public GetAddMaterialStatusResponse getInstance(UnmarshallerContext context) {
return GetAddMaterialStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetCompanyTemplatePictureByJobRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class GetCompanyTemplatePictureByJobRequest extends RpcAcsRequest<GetCompanyTemplatePictureByJobResponse> {
private String jobId;
public GetCompanyTemplatePictureByJobRequest() {
super("cloudesl", "2020-02-01", "GetCompanyTemplatePictureByJob");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putBodyParameter("JobId", jobId);
}
}
@Override
public Class<GetCompanyTemplatePictureByJobResponse> getResponseClass() {
return GetCompanyTemplatePictureByJobResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetCompanyTemplatePictureByJobResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.GetCompanyTemplatePictureByJobResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCompanyTemplatePictureByJobResponse extends AcsResponse {
private String base64Picture;
private String jobId;
private String type;
private String url;
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
public String getBase64Picture() {
return this.base64Picture;
}
public void setBase64Picture(String base64Picture) {
this.base64Picture = base64Picture;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
@Override
public GetCompanyTemplatePictureByJobResponse getInstance(UnmarshallerContext context) {
return GetCompanyTemplatePictureByJobResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetCompanyTemplatePictureNewRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class GetCompanyTemplatePictureNewRequest extends RpcAcsRequest<GetCompanyTemplatePictureNewResponse> {
private String data;
public GetCompanyTemplatePictureNewRequest() {
super("cloudesl", "2020-02-01", "GetCompanyTemplatePictureNew");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
if(data != null){
putBodyParameter("Data", data);
}
}
@Override
public Class<GetCompanyTemplatePictureNewResponse> getResponseClass() {
return GetCompanyTemplatePictureNewResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetCompanyTemplatePictureNewResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.GetCompanyTemplatePictureNewResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCompanyTemplatePictureNewResponse extends AcsResponse {
private String base64Picture;
private String jobId;
private String type;
private String url;
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
public String getBase64Picture() {
return this.base64Picture;
}
public void setBase64Picture(String base64Picture) {
this.base64Picture = base64Picture;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
@Override
public GetCompanyTemplatePictureNewResponse getInstance(UnmarshallerContext context) {
return GetCompanyTemplatePictureNewResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetCompanyTemplatePictureRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class GetCompanyTemplatePictureRequest extends RpcAcsRequest<GetCompanyTemplatePictureResponse> {
private String extraParams;
private String data;
public GetCompanyTemplatePictureRequest() {
super("cloudesl", "2020-02-01", "GetCompanyTemplatePicture");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
if(data != null){
putBodyParameter("Data", data);
}
}
@Override
public Class<GetCompanyTemplatePictureResponse> getResponseClass() {
return GetCompanyTemplatePictureResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetCompanyTemplatePictureResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.GetCompanyTemplatePictureResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCompanyTemplatePictureResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String base64Picture;
private String message;
private String dynamicMessage;
private String dynamicCode;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getBase64Picture() {
return this.base64Picture;
}
public void setBase64Picture(String base64Picture) {
this.base64Picture = base64Picture;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
@Override
public GetCompanyTemplatePictureResponse getInstance(UnmarshallerContext context) {
return GetCompanyTemplatePictureResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetEslDevicesRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class GetEslDevicesRequest extends RpcAcsRequest<GetEslDevicesResponse> {
private String storeId;
private String eslBarCode;
public GetEslDevicesRequest() {
super("cloudesl", "2020-02-01", "GetEslDevices");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
@Override
public Class<GetEslDevicesResponse> getResponseClass() {
return GetEslDevicesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetEslDevicesResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.GetEslDevicesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetEslDevicesResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private String eslBarCode;
private String type;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
@Override
public GetEslDevicesResponse getInstance(UnmarshallerContext context) {
return GetEslDevicesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetItemMaterialRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class GetItemMaterialRequest extends RpcAcsRequest<GetItemMaterialResponse> {
private String barCode;
public GetItemMaterialRequest() {
super("cloudesl", "2020-02-01", "GetItemMaterial");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getBarCode() {
return this.barCode;
}
public void setBarCode(String barCode) {
this.barCode = barCode;
if(barCode != null){
putBodyParameter("BarCode", barCode);
}
}
@Override
public Class<GetItemMaterialResponse> getResponseClass() {
return GetItemMaterialResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetItemMaterialResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.GetItemMaterialResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetItemMaterialResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private MaterialInfo materialInfo;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public MaterialInfo getMaterialInfo() {
return this.materialInfo;
}
public void setMaterialInfo(MaterialInfo materialInfo) {
this.materialInfo = materialInfo;
}
public static class MaterialInfo {
private String itemName;
private String barCode;
private String gmtCreate;
private String materialName;
private String materialId;
private String materialFeatureA;
private String materialFeatureB;
private String materialFeatureC;
private String materialFeatureD;
public String getItemName() {
return this.itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getBarCode() {
return this.barCode;
}
public void setBarCode(String barCode) {
this.barCode = barCode;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getMaterialName() {
return this.materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
public String getMaterialId() {
return this.materialId;
}
public void setMaterialId(String materialId) {
this.materialId = materialId;
}
public String getMaterialFeatureA() {
return this.materialFeatureA;
}
public void setMaterialFeatureA(String materialFeatureA) {
this.materialFeatureA = materialFeatureA;
}
public String getMaterialFeatureB() {
return this.materialFeatureB;
}
public void setMaterialFeatureB(String materialFeatureB) {
this.materialFeatureB = materialFeatureB;
}
public String getMaterialFeatureC() {
return this.materialFeatureC;
}
public void setMaterialFeatureC(String materialFeatureC) {
this.materialFeatureC = materialFeatureC;
}
public String getMaterialFeatureD() {
return this.materialFeatureD;
}
public void setMaterialFeatureD(String materialFeatureD) {
this.materialFeatureD = materialFeatureD;
}
}
@Override
public GetItemMaterialResponse getInstance(UnmarshallerContext context) {
return GetItemMaterialResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetUserRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class GetUserRequest extends RpcAcsRequest<GetUserResponse> {
private String extraParams;
private String userId;
public GetUserRequest() {
super("cloudesl", "2020-02-01", "GetUser");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
@Override
public Class<GetUserResponse> getResponseClass() {
return GetUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/GetUserResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.GetUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetUserResponse extends AcsResponse {
private String errorMessage;
private String errorCode;
private String message;
private String dynamicCode;
private String code;
private String dynamicMessage;
private String requestId;
private Boolean success;
private User user;
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
}
public static class User {
private String stores;
private String userName;
private String userId;
private String userType;
private String ownerId;
private String bid;
private List<DingTalkInfo> dingTalkInfos;
public String getStores() {
return this.stores;
}
public void setStores(String stores) {
this.stores = stores;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserType() {
return this.userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
public String getOwnerId() {
return this.ownerId;
}
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
public String getBid() {
return this.bid;
}
public void setBid(String bid) {
this.bid = bid;
}
public List<DingTalkInfo> getDingTalkInfos() {
return this.dingTalkInfos;
}
public void setDingTalkInfos(List<DingTalkInfo> dingTalkInfos) {
this.dingTalkInfos = dingTalkInfos;
}
public static class DingTalkInfo {
private String dingTalkCompanyId;
private String dingTalkUserId;
public String getDingTalkCompanyId() {
return this.dingTalkCompanyId;
}
public void setDingTalkCompanyId(String dingTalkCompanyId) {
this.dingTalkCompanyId = dingTalkCompanyId;
}
public String getDingTalkUserId() {
return this.dingTalkUserId;
}
public void setDingTalkUserId(String dingTalkUserId) {
this.dingTalkUserId = dingTalkUserId;
}
}
}
@Override
public GetUserResponse getInstance(UnmarshallerContext context) {
return GetUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryContainerListRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryContainerListRequest extends RpcAcsRequest<QueryContainerListResponse> {
private String layoutId;
private Integer pageNumber;
private Integer pageSize;
public QueryContainerListRequest() {
super("cloudesl", "2020-02-01", "QueryContainerList");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLayoutId() {
return this.layoutId;
}
public void setLayoutId(String layoutId) {
this.layoutId = layoutId;
if(layoutId != null){
putBodyParameter("LayoutId", layoutId);
}
}
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<QueryContainerListResponse> getResponseClass() {
return QueryContainerListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryContainerListResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.QueryContainerListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryContainerListResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private Integer pageSize;
private Integer pageNumber;
private Integer totalCount;
private List<Container> containerList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Container> getContainerList() {
return this.containerList;
}
public void setContainerList(List<Container> containerList) {
this.containerList = containerList;
}
public static class Container {
private String containerId;
private String containerName;
private String description;
private Integer topPx;
private Integer leftPx;
private Integer widthPx;
private Integer heightPx;
private String groupId;
private String groupName;
private String demoTemplateId;
private String demoTemplateName;
public String getContainerId() {
return this.containerId;
}
public void setContainerId(String containerId) {
this.containerId = containerId;
}
public String getContainerName() {
return this.containerName;
}
public void setContainerName(String containerName) {
this.containerName = containerName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getTopPx() {
return this.topPx;
}
public void setTopPx(Integer topPx) {
this.topPx = topPx;
}
public Integer getLeftPx() {
return this.leftPx;
}
public void setLeftPx(Integer leftPx) {
this.leftPx = leftPx;
}
public Integer getWidthPx() {
return this.widthPx;
}
public void setWidthPx(Integer widthPx) {
this.widthPx = widthPx;
}
public Integer getHeightPx() {
return this.heightPx;
}
public void setHeightPx(Integer heightPx) {
this.heightPx = heightPx;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getDemoTemplateId() {
return this.demoTemplateId;
}
public void setDemoTemplateId(String demoTemplateId) {
this.demoTemplateId = demoTemplateId;
}
public String getDemoTemplateName() {
return this.demoTemplateName;
}
public void setDemoTemplateName(String demoTemplateName) {
this.demoTemplateName = demoTemplateName;
}
}
@Override
public QueryContainerListResponse getInstance(UnmarshallerContext context) {
return QueryContainerListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryLayoutByDeviceRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryLayoutByDeviceRequest extends RpcAcsRequest<QueryLayoutByDeviceResponse> {
private String storeId;
private Integer pageNumber;
private String templateVersion;
private String eslBarCode;
private Integer pageSize;
private String eslModelId;
public QueryLayoutByDeviceRequest() {
super("cloudesl", "2020-02-01", "QueryLayoutByDevice");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getEslModelId() {
return this.eslModelId;
}
public void setEslModelId(String eslModelId) {
this.eslModelId = eslModelId;
if(eslModelId != null){
putBodyParameter("EslModelId", eslModelId);
}
}
@Override
public Class<QueryLayoutByDeviceResponse> getResponseClass() {
return QueryLayoutByDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryLayoutByDeviceResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.QueryLayoutByDeviceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryLayoutByDeviceResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<Layout> layoutList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
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 Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Layout> getLayoutList() {
return this.layoutList;
}
public void setLayoutList(List<Layout> layoutList) {
this.layoutList = layoutList;
}
public static class Layout {
private String layoutId;
private String layoutName;
private String description;
private String layoutTemplateId;
private Boolean isBind;
private String brand;
private String basePic;
public String getLayoutId() {
return this.layoutId;
}
public void setLayoutId(String layoutId) {
this.layoutId = layoutId;
}
public String getLayoutName() {
return this.layoutName;
}
public void setLayoutName(String layoutName) {
this.layoutName = layoutName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getLayoutTemplateId() {
return this.layoutTemplateId;
}
public void setLayoutTemplateId(String layoutTemplateId) {
this.layoutTemplateId = layoutTemplateId;
}
public Boolean getIsBind() {
return this.isBind;
}
public void setIsBind(Boolean isBind) {
this.isBind = isBind;
}
public String getBrand() {
return this.brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public String getBasePic() {
return this.basePic;
}
public void setBasePic(String basePic) {
this.basePic = basePic;
}
}
@Override
public QueryLayoutByDeviceResponse getInstance(UnmarshallerContext context) {
return QueryLayoutByDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryLayoutDetailRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryLayoutDetailRequest extends RpcAcsRequest<QueryLayoutDetailResponse> {
private Long layoutId;
public QueryLayoutDetailRequest() {
super("cloudesl", "2020-02-01", "QueryLayoutDetail");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getLayoutId() {
return this.layoutId;
}
public void setLayoutId(Long layoutId) {
this.layoutId = layoutId;
if(layoutId != null){
putBodyParameter("LayoutId", layoutId.toString());
}
}
@Override
public Class<QueryLayoutDetailResponse> getResponseClass() {
return QueryLayoutDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryLayoutDetailResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.QueryLayoutDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryLayoutDetailResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private Long layoutId;
private String layoutName;
private String description;
private Long layoutTemplateId;
private String eslModelId;
private String templateVersion;
private String brandId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public Long getLayoutId() {
return this.layoutId;
}
public void setLayoutId(Long layoutId) {
this.layoutId = layoutId;
}
public String getLayoutName() {
return this.layoutName;
}
public void setLayoutName(String layoutName) {
this.layoutName = layoutName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getLayoutTemplateId() {
return this.layoutTemplateId;
}
public void setLayoutTemplateId(Long layoutTemplateId) {
this.layoutTemplateId = layoutTemplateId;
}
public String getEslModelId() {
return this.eslModelId;
}
public void setEslModelId(String eslModelId) {
this.eslModelId = eslModelId;
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
}
public String getBrandId() {
return this.brandId;
}
public void setBrandId(String brandId) {
this.brandId = brandId;
}
@Override
public QueryLayoutDetailResponse getInstance(UnmarshallerContext context) {
return QueryLayoutDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryTemplateGroupListRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryTemplateGroupListRequest extends RpcAcsRequest<QueryTemplateGroupListResponse> {
private Integer pageNumber;
private String templateVersion;
private Integer pageSize;
private String eslModelId;
private Integer widthPx;
private String groupIds;
private Integer heightPx;
public QueryTemplateGroupListRequest() {
super("cloudesl", "2020-02-01", "QueryTemplateGroupList");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getEslModelId() {
return this.eslModelId;
}
public void setEslModelId(String eslModelId) {
this.eslModelId = eslModelId;
if(eslModelId != null){
putBodyParameter("EslModelId", eslModelId);
}
}
public Integer getWidthPx() {
return this.widthPx;
}
public void setWidthPx(Integer widthPx) {
this.widthPx = widthPx;
if(widthPx != null){
putBodyParameter("WidthPx", widthPx.toString());
}
}
public String getGroupIds() {
return this.groupIds;
}
public void setGroupIds(String groupIds) {
this.groupIds = groupIds;
if(groupIds != null){
putBodyParameter("GroupIds", groupIds);
}
}
public Integer getHeightPx() {
return this.heightPx;
}
public void setHeightPx(Integer heightPx) {
this.heightPx = heightPx;
if(heightPx != null){
putBodyParameter("HeightPx", heightPx.toString());
}
}
@Override
public Class<QueryTemplateGroupListResponse> getResponseClass() {
return QueryTemplateGroupListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryTemplateGroupListResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.QueryTemplateGroupListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryTemplateGroupListResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private Integer pageSize;
private Integer pageNumber;
private Integer totalCount;
private List<TemplateGroup> templateGroupList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<TemplateGroup> getTemplateGroupList() {
return this.templateGroupList;
}
public void setTemplateGroupList(List<TemplateGroup> templateGroupList) {
this.templateGroupList = templateGroupList;
}
public static class TemplateGroup {
private String groupId;
private String groupName;
private String description;
private Integer widthPx;
private Integer heightPx;
private String relation;
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getWidthPx() {
return this.widthPx;
}
public void setWidthPx(Integer widthPx) {
this.widthPx = widthPx;
}
public Integer getHeightPx() {
return this.heightPx;
}
public void setHeightPx(Integer heightPx) {
this.heightPx = heightPx;
}
public String getRelation() {
return this.relation;
}
public void setRelation(String relation) {
this.relation = relation;
}
}
@Override
public QueryTemplateGroupListResponse getInstance(UnmarshallerContext context) {
return QueryTemplateGroupListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryTemplateListByGroupIdRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryTemplateListByGroupIdRequest extends RpcAcsRequest<QueryTemplateListByGroupIdResponse> {
private String groupId;
private Integer pageNumber;
private Integer pageSize;
public QueryTemplateListByGroupIdRequest() {
super("cloudesl", "2020-02-01", "QueryTemplateListByGroupId");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putBodyParameter("GroupId", groupId);
}
}
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<QueryTemplateListByGroupIdResponse> getResponseClass() {
return QueryTemplateListByGroupIdResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/QueryTemplateListByGroupIdResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.QueryTemplateListByGroupIdResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryTemplateListByGroupIdResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private Integer totalCount;
private Integer pageSize;
private Integer pageNumber;
private List<Template> templateList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public List<Template> getTemplateList() {
return this.templateList;
}
public void setTemplateList(List<Template> templateList) {
this.templateList = templateList;
}
public static class Template {
private String basePicture;
private String templateId;
private String templateName;
private String eslSize;
private String eslType;
private Long width;
private Long height;
private String templateVersion;
private String layout;
private String scene;
private String brand;
private String groupId;
private String templateSceneId;
private Boolean relation;
public String getBasePicture() {
return this.basePicture;
}
public void setBasePicture(String basePicture) {
this.basePicture = basePicture;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getTemplateName() {
return this.templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
}
public String getEslSize() {
return this.eslSize;
}
public void setEslSize(String eslSize) {
this.eslSize = eslSize;
}
public String getEslType() {
return this.eslType;
}
public void setEslType(String eslType) {
this.eslType = eslType;
}
public Long getWidth() {
return this.width;
}
public void setWidth(Long width) {
this.width = width;
}
public Long getHeight() {
return this.height;
}
public void setHeight(Long height) {
this.height = height;
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
}
public String getLayout() {
return this.layout;
}
public void setLayout(String layout) {
this.layout = layout;
}
public String getScene() {
return this.scene;
}
public void setScene(String scene) {
this.scene = scene;
}
public String getBrand() {
return this.brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getTemplateSceneId() {
return this.templateSceneId;
}
public void setTemplateSceneId(String templateSceneId) {
this.templateSceneId = templateSceneId;
}
public Boolean getRelation() {
return this.relation;
}
public void setRelation(Boolean relation) {
this.relation = relation;
}
}
@Override
public QueryTemplateListByGroupIdResponse getInstance(UnmarshallerContext context) {
return QueryTemplateListByGroupIdResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/SaveLayoutRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class SaveLayoutRequest extends RpcAcsRequest<SaveLayoutResponse> {
private String layoutId;
private String templateVersion;
private String layoutName;
private String eslModelId;
public SaveLayoutRequest() {
super("cloudesl", "2020-02-01", "SaveLayout");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLayoutId() {
return this.layoutId;
}
public void setLayoutId(String layoutId) {
this.layoutId = layoutId;
if(layoutId != null){
putBodyParameter("LayoutId", layoutId);
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public String getLayoutName() {
return this.layoutName;
}
public void setLayoutName(String layoutName) {
this.layoutName = layoutName;
if(layoutName != null){
putBodyParameter("LayoutName", layoutName);
}
}
public String getEslModelId() {
return this.eslModelId;
}
public void setEslModelId(String eslModelId) {
this.eslModelId = eslModelId;
if(eslModelId != null){
putBodyParameter("EslModelId", eslModelId);
}
}
@Override
public Class<SaveLayoutResponse> getResponseClass() {
return SaveLayoutResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/SaveLayoutResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.SaveLayoutResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SaveLayoutResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
@Override
public SaveLayoutResponse getInstance(UnmarshallerContext context) {
return SaveLayoutResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/SaveTemplateGroupRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class SaveTemplateGroupRequest extends RpcAcsRequest<SaveTemplateGroupResponse> {
private String templateVersion;
private String eslModelId;
private String groupId;
private Integer widthPx;
private String groupName;
private Integer heightPx;
public SaveTemplateGroupRequest() {
super("cloudesl", "2020-02-01", "SaveTemplateGroup");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public String getEslModelId() {
return this.eslModelId;
}
public void setEslModelId(String eslModelId) {
this.eslModelId = eslModelId;
if(eslModelId != null){
putBodyParameter("EslModelId", eslModelId);
}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putBodyParameter("GroupId", groupId);
}
}
public Integer getWidthPx() {
return this.widthPx;
}
public void setWidthPx(Integer widthPx) {
this.widthPx = widthPx;
if(widthPx != null){
putBodyParameter("WidthPx", widthPx.toString());
}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putBodyParameter("GroupName", groupName);
}
}
public Integer getHeightPx() {
return this.heightPx;
}
public void setHeightPx(Integer heightPx) {
this.heightPx = heightPx;
if(heightPx != null){
putBodyParameter("HeightPx", heightPx.toString());
}
}
@Override
public Class<SaveTemplateGroupResponse> getResponseClass() {
return SaveTemplateGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/SaveTemplateGroupResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.SaveTemplateGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SaveTemplateGroupResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
@Override
public SaveTemplateGroupResponse getInstance(UnmarshallerContext context) {
return SaveTemplateGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/SyncAddMaterialRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class SyncAddMaterialRequest extends RpcAcsRequest<SyncAddMaterialResponse> {
private String content;
private String name;
public SyncAddMaterialRequest() {
super("cloudesl", "2020-02-01", "SyncAddMaterial");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
if(content != null){
putBodyParameter("Content", content);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putBodyParameter("Name", name);
}
}
@Override
public Class<SyncAddMaterialResponse> getResponseClass() {
return SyncAddMaterialResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/SyncAddMaterialResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.SyncAddMaterialResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SyncAddMaterialResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
private Result result;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public Result getResult() {
return this.result;
}
public void setResult(Result result) {
this.result = result;
}
public static class Result {
private Boolean success;
private String message;
private String dynamicMessage;
private String dynamicCode;
private String errorCode;
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 getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
}
@Override
public SyncAddMaterialResponse getInstance(UnmarshallerContext context) {
return SyncAddMaterialResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UnassignUserRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UnassignUserRequest extends RpcAcsRequest<UnassignUserResponse> {
private String extraParams;
private String userId;
public UnassignUserRequest() {
super("cloudesl", "2020-02-01", "UnassignUser");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
@Override
public Class<UnassignUserResponse> getResponseClass() {
return UnassignUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UnassignUserResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UnassignUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UnassignUserResponse extends AcsResponse {
private String errorMessage;
private String errorCode;
private String message;
private String dynamicCode;
private String code;
private String dynamicMessage;
private String requestId;
private Boolean success;
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UnassignUserResponse getInstance(UnmarshallerContext context) {
return UnassignUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UnbindEslDeviceRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UnbindEslDeviceRequest extends RpcAcsRequest<UnbindEslDeviceResponse> {
private String extraParams;
private String containerName;
private String storeId;
private Integer layer;
private String eslBarCode;
private String itemBarCode;
private String column;
private String shelf;
public UnbindEslDeviceRequest() {
super("cloudesl", "2020-02-01", "UnbindEslDevice");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getContainerName() {
return this.containerName;
}
public void setContainerName(String containerName) {
this.containerName = containerName;
if(containerName != null){
putBodyParameter("ContainerName", containerName);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public Integer getLayer() {
return this.layer;
}
public void setLayer(Integer layer) {
this.layer = layer;
if(layer != null){
putBodyParameter("Layer", layer.toString());
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
public String getItemBarCode() {
return this.itemBarCode;
}
public void setItemBarCode(String itemBarCode) {
this.itemBarCode = itemBarCode;
if(itemBarCode != null){
putBodyParameter("ItemBarCode", itemBarCode);
}
}
public String getColumn() {
return this.column;
}
public void setColumn(String column) {
this.column = column;
if(column != null){
putBodyParameter("Column", column);
}
}
public String getShelf() {
return this.shelf;
}
public void setShelf(String shelf) {
this.shelf = shelf;
if(shelf != null){
putBodyParameter("Shelf", shelf);
}
}
@Override
public Class<UnbindEslDeviceResponse> getResponseClass() {
return UnbindEslDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UnbindEslDeviceResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UnbindEslDeviceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UnbindEslDeviceResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
@Override
public UnbindEslDeviceResponse getInstance(UnmarshallerContext context) {
return UnbindEslDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateCompanyTemplateRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateCompanyTemplateRequest extends RpcAcsRequest<UpdateCompanyTemplateResponse> {
private String extraParams;
private String scene;
private String templateVersion;
private String templateName;
private String templateId;
public UpdateCompanyTemplateRequest() {
super("cloudesl", "2020-02-01", "UpdateCompanyTemplate");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getScene() {
return this.scene;
}
public void setScene(String scene) {
this.scene = scene;
if(scene != null){
putBodyParameter("Scene", scene);
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public String getTemplateName() {
return this.templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
if(templateName != null){
putBodyParameter("TemplateName", templateName);
}
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putBodyParameter("TemplateId", templateId);
}
}
@Override
public Class<UpdateCompanyTemplateResponse> getResponseClass() {
return UpdateCompanyTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateCompanyTemplateResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UpdateCompanyTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateCompanyTemplateResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
@Override
public UpdateCompanyTemplateResponse getInstance(UnmarshallerContext context) {
return UpdateCompanyTemplateResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateCompanyTemplateViewRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateCompanyTemplateViewRequest extends RpcAcsRequest<UpdateCompanyTemplateViewResponse> {
private String extraParams;
private String data;
public UpdateCompanyTemplateViewRequest() {
super("cloudesl", "2020-02-01", "UpdateCompanyTemplateView");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
if(data != null){
putBodyParameter("Data", data);
}
}
@Override
public Class<UpdateCompanyTemplateViewResponse> getResponseClass() {
return UpdateCompanyTemplateViewResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateCompanyTemplateViewResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UpdateCompanyTemplateViewResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateCompanyTemplateViewResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
@Override
public UpdateCompanyTemplateViewResponse getInstance(UnmarshallerContext context) {
return UpdateCompanyTemplateViewResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateEslDeviceLightRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateEslDeviceLightRequest extends RpcAcsRequest<UpdateEslDeviceLightResponse> {
private String extraParams;
private Integer lightUpTime;
private String storeId;
private String frequency;
private String eslBarCode;
private String ledColor;
private String itemBarCode;
public UpdateEslDeviceLightRequest() {
super("cloudesl", "2020-02-01", "UpdateEslDeviceLight");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public Integer getLightUpTime() {
return this.lightUpTime;
}
public void setLightUpTime(Integer lightUpTime) {
this.lightUpTime = lightUpTime;
if(lightUpTime != null){
putBodyParameter("LightUpTime", lightUpTime.toString());
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public String getFrequency() {
return this.frequency;
}
public void setFrequency(String frequency) {
this.frequency = frequency;
if(frequency != null){
putBodyParameter("Frequency", frequency);
}
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
if(eslBarCode != null){
putBodyParameter("EslBarCode", eslBarCode);
}
}
public String getLedColor() {
return this.ledColor;
}
public void setLedColor(String ledColor) {
this.ledColor = ledColor;
if(ledColor != null){
putBodyParameter("LedColor", ledColor);
}
}
public String getItemBarCode() {
return this.itemBarCode;
}
public void setItemBarCode(String itemBarCode) {
this.itemBarCode = itemBarCode;
if(itemBarCode != null){
putBodyParameter("ItemBarCode", itemBarCode);
}
}
@Override
public Class<UpdateEslDeviceLightResponse> getResponseClass() {
return UpdateEslDeviceLightResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateEslDeviceLightResponse.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.cloudesl.model.v20200201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UpdateEslDeviceLightResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateEslDeviceLightResponse extends AcsResponse {
private String errorMessage;
private String errorCode;
private String message;
private Integer successCount;
private Integer failCount;
private String dynamicCode;
private String code;
private String dynamicMessage;
private String requestId;
private Boolean success;
private List<LightFailEslInfo> lightFailEslInfos;
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getSuccessCount() {
return this.successCount;
}
public void setSuccessCount(Integer successCount) {
this.successCount = successCount;
}
public Integer getFailCount() {
return this.failCount;
}
public void setFailCount(Integer failCount) {
this.failCount = failCount;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<LightFailEslInfo> getLightFailEslInfos() {
return this.lightFailEslInfos;
}
public void setLightFailEslInfos(List<LightFailEslInfo> lightFailEslInfos) {
this.lightFailEslInfos = lightFailEslInfos;
}
public static class LightFailEslInfo {
private String errorMessage;
private String eslBarCode;
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getEslBarCode() {
return this.eslBarCode;
}
public void setEslBarCode(String eslBarCode) {
this.eslBarCode = eslBarCode;
}
}
@Override
public UpdateEslDeviceLightResponse getInstance(UnmarshallerContext context) {
return UpdateEslDeviceLightResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateItemMaterialRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateItemMaterialRequest extends RpcAcsRequest<UpdateItemMaterialResponse> {
private String materialId;
private String barCode;
private String itemName;
private String materialFeatureA;
private String materialFeatureB;
private String materialFeatureC;
private String materialFeatureD;
public UpdateItemMaterialRequest() {
super("cloudesl", "2020-02-01", "UpdateItemMaterial");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMaterialId() {
return this.materialId;
}
public void setMaterialId(String materialId) {
this.materialId = materialId;
if(materialId != null){
putBodyParameter("MaterialId", materialId);
}
}
public String getBarCode() {
return this.barCode;
}
public void setBarCode(String barCode) {
this.barCode = barCode;
if(barCode != null){
putBodyParameter("BarCode", barCode);
}
}
public String getItemName() {
return this.itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
if(itemName != null){
putBodyParameter("ItemName", itemName);
}
}
public String getMaterialFeatureA() {
return this.materialFeatureA;
}
public void setMaterialFeatureA(String materialFeatureA) {
this.materialFeatureA = materialFeatureA;
if(materialFeatureA != null){
putBodyParameter("MaterialFeatureA", materialFeatureA);
}
}
public String getMaterialFeatureB() {
return this.materialFeatureB;
}
public void setMaterialFeatureB(String materialFeatureB) {
this.materialFeatureB = materialFeatureB;
if(materialFeatureB != null){
putBodyParameter("MaterialFeatureB", materialFeatureB);
}
}
public String getMaterialFeatureC() {
return this.materialFeatureC;
}
public void setMaterialFeatureC(String materialFeatureC) {
this.materialFeatureC = materialFeatureC;
if(materialFeatureC != null){
putBodyParameter("MaterialFeatureC", materialFeatureC);
}
}
public String getMaterialFeatureD() {
return this.materialFeatureD;
}
public void setMaterialFeatureD(String materialFeatureD) {
this.materialFeatureD = materialFeatureD;
if(materialFeatureD != null){
putBodyParameter("MaterialFeatureD", materialFeatureD);
}
}
@Override
public Class<UpdateItemMaterialResponse> getResponseClass() {
return UpdateItemMaterialResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateItemMaterialResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UpdateItemMaterialResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateItemMaterialResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private String errorCode;
private String errorMessage;
private String code;
private String dynamicCode;
private String dynamicMessage;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
@Override
public UpdateItemMaterialResponse getInstance(UnmarshallerContext context) {
return UpdateItemMaterialResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateNotificationConfigRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateNotificationConfigRequest extends RpcAcsRequest<UpdateNotificationConfigResponse> {
private String endpoint;
private Boolean enable;
private String tag;
private String groupId;
private String topic;
public UpdateNotificationConfigRequest() {
super("cloudesl", "2020-02-01", "UpdateNotificationConfig");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
if(endpoint != null){
putBodyParameter("Endpoint", endpoint);
}
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
if(enable != null){
putBodyParameter("Enable", enable.toString());
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putBodyParameter("Tag", tag);
}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putBodyParameter("GroupId", groupId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putBodyParameter("Topic", topic);
}
}
@Override
public Class<UpdateNotificationConfigResponse> getResponseClass() {
return UpdateNotificationConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateNotificationConfigResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UpdateNotificationConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateNotificationConfigResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
@Override
public UpdateNotificationConfigResponse getInstance(UnmarshallerContext context) {
return UpdateNotificationConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateStoreConfigRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateStoreConfigRequest extends RpcAcsRequest<UpdateStoreConfigResponse> {
private String extraParams;
private String storeId;
private String subscribeContents;
private Boolean enableNotification;
private String notificationWebHook;
private String notificationSilentTimes;
public UpdateStoreConfigRequest() {
super("cloudesl", "2020-02-01", "UpdateStoreConfig");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public String getSubscribeContents() {
return this.subscribeContents;
}
public void setSubscribeContents(String subscribeContents) {
this.subscribeContents = subscribeContents;
if(subscribeContents != null){
putBodyParameter("SubscribeContents", subscribeContents);
}
}
public Boolean getEnableNotification() {
return this.enableNotification;
}
public void setEnableNotification(Boolean enableNotification) {
this.enableNotification = enableNotification;
if(enableNotification != null){
putBodyParameter("EnableNotification", enableNotification.toString());
}
}
public String getNotificationWebHook() {
return this.notificationWebHook;
}
public void setNotificationWebHook(String notificationWebHook) {
this.notificationWebHook = notificationWebHook;
if(notificationWebHook != null){
putBodyParameter("NotificationWebHook", notificationWebHook);
}
}
public String getNotificationSilentTimes() {
return this.notificationSilentTimes;
}
public void setNotificationSilentTimes(String notificationSilentTimes) {
this.notificationSilentTimes = notificationSilentTimes;
if(notificationSilentTimes != null){
putBodyParameter("NotificationSilentTimes", notificationSilentTimes);
}
}
@Override
public Class<UpdateStoreConfigResponse> getResponseClass() {
return UpdateStoreConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateStoreConfigResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UpdateStoreConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateStoreConfigResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
@Override
public UpdateStoreConfigResponse getInstance(UnmarshallerContext context) {
return UpdateStoreConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateStoreRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateStoreRequest extends RpcAcsRequest<UpdateStoreResponse> {
private String extraParams;
private String timezone;
private String storeName;
private String storeId;
private String templateVersion;
private String userStoreCode;
private String phone;
public UpdateStoreRequest() {
super("cloudesl", "2020-02-01", "UpdateStore");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtraParams() {
return this.extraParams;
}
public void setExtraParams(String extraParams) {
this.extraParams = extraParams;
if(extraParams != null){
putBodyParameter("ExtraParams", extraParams);
}
}
public String getTimezone() {
return this.timezone;
}
public void setTimezone(String timezone) {
this.timezone = timezone;
if(timezone != null){
putBodyParameter("Timezone", timezone);
}
}
public String getStoreName() {
return this.storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
if(storeName != null){
putBodyParameter("StoreName", storeName);
}
}
public String getStoreId() {
return this.storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
if(storeId != null){
putBodyParameter("StoreId", storeId);
}
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putBodyParameter("TemplateVersion", templateVersion);
}
}
public String getUserStoreCode() {
return this.userStoreCode;
}
public void setUserStoreCode(String userStoreCode) {
this.userStoreCode = userStoreCode;
if(userStoreCode != null){
putBodyParameter("UserStoreCode", userStoreCode);
}
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
if(phone != null){
putBodyParameter("Phone", phone);
}
}
@Override
public Class<UpdateStoreResponse> getResponseClass() {
return UpdateStoreResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/UpdateStoreResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.UpdateStoreResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateStoreResponse extends AcsResponse {
private String errorMessage;
private String errorCode;
private String message;
private String dynamicCode;
private String code;
private String dynamicMessage;
private String requestId;
private Boolean success;
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UpdateStoreResponse getInstance(UnmarshallerContext context) {
return UpdateStoreResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/VerifyNotificationConfigRequest.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.cloudesl.model.v20200201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cloudesl.Endpoint;
/**
* @author auto create
* @version
*/
public class VerifyNotificationConfigRequest extends RpcAcsRequest<VerifyNotificationConfigResponse> {
private String groupId;
private String endpoint;
private String topic;
private String tag;
public VerifyNotificationConfigRequest() {
super("cloudesl", "2020-02-01", "VerifyNotificationConfig");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putBodyParameter("GroupId", groupId);
}
}
public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
if(endpoint != null){
putBodyParameter("Endpoint", endpoint);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putBodyParameter("Topic", topic);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putBodyParameter("Tag", tag);
}
}
@Override
public Class<VerifyNotificationConfigResponse> getResponseClass() {
return VerifyNotificationConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/model/v20200201/VerifyNotificationConfigResponse.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.cloudesl.model.v20200201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudesl.transform.v20200201.VerifyNotificationConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class VerifyNotificationConfigResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private Boolean success;
private String errorCode;
private String code;
private String message;
private String dynamicMessage;
private String dynamicCode;
private Boolean result;
private String sendTime;
private String exceptionMessage;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public Boolean getResult() {
return this.result;
}
public void setResult(Boolean result) {
this.result = result;
}
public String getSendTime() {
return this.sendTime;
}
public void setSendTime(String sendTime) {
this.sendTime = sendTime;
}
public String getExceptionMessage() {
return this.exceptionMessage;
}
public void setExceptionMessage(String exceptionMessage) {
this.exceptionMessage = exceptionMessage;
}
@Override
public VerifyNotificationConfigResponse getInstance(UnmarshallerContext context) {
return VerifyNotificationConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/ActivateApDeviceResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.ActivateApDeviceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ActivateApDeviceResponseUnmarshaller {
public static ActivateApDeviceResponse unmarshall(ActivateApDeviceResponse activateApDeviceResponse, UnmarshallerContext _ctx) {
activateApDeviceResponse.setRequestId(_ctx.stringValue("ActivateApDeviceResponse.RequestId"));
activateApDeviceResponse.setErrorMessage(_ctx.stringValue("ActivateApDeviceResponse.ErrorMessage"));
activateApDeviceResponse.setErrorCode(_ctx.stringValue("ActivateApDeviceResponse.ErrorCode"));
activateApDeviceResponse.setMessage(_ctx.stringValue("ActivateApDeviceResponse.Message"));
activateApDeviceResponse.setDynamicCode(_ctx.stringValue("ActivateApDeviceResponse.DynamicCode"));
activateApDeviceResponse.setCode(_ctx.stringValue("ActivateApDeviceResponse.Code"));
activateApDeviceResponse.setDynamicMessage(_ctx.stringValue("ActivateApDeviceResponse.DynamicMessage"));
activateApDeviceResponse.setSuccess(_ctx.booleanValue("ActivateApDeviceResponse.Success"));
return activateApDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/AddApDeviceResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.AddApDeviceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddApDeviceResponseUnmarshaller {
public static AddApDeviceResponse unmarshall(AddApDeviceResponse addApDeviceResponse, UnmarshallerContext _ctx) {
addApDeviceResponse.setRequestId(_ctx.stringValue("AddApDeviceResponse.RequestId"));
addApDeviceResponse.setErrorMessage(_ctx.stringValue("AddApDeviceResponse.ErrorMessage"));
addApDeviceResponse.setErrorCode(_ctx.stringValue("AddApDeviceResponse.ErrorCode"));
addApDeviceResponse.setMessage(_ctx.stringValue("AddApDeviceResponse.Message"));
addApDeviceResponse.setDynamicCode(_ctx.stringValue("AddApDeviceResponse.DynamicCode"));
addApDeviceResponse.setCode(_ctx.stringValue("AddApDeviceResponse.Code"));
addApDeviceResponse.setDynamicMessage(_ctx.stringValue("AddApDeviceResponse.DynamicMessage"));
addApDeviceResponse.setSuccess(_ctx.booleanValue("AddApDeviceResponse.Success"));
return addApDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/AddCompanyTemplateResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.AddCompanyTemplateResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddCompanyTemplateResponseUnmarshaller {
public static AddCompanyTemplateResponse unmarshall(AddCompanyTemplateResponse addCompanyTemplateResponse, UnmarshallerContext _ctx) {
addCompanyTemplateResponse.setRequestId(_ctx.stringValue("AddCompanyTemplateResponse.RequestId"));
addCompanyTemplateResponse.setErrorMessage(_ctx.stringValue("AddCompanyTemplateResponse.ErrorMessage"));
addCompanyTemplateResponse.setSuccess(_ctx.booleanValue("AddCompanyTemplateResponse.Success"));
addCompanyTemplateResponse.setErrorCode(_ctx.stringValue("AddCompanyTemplateResponse.ErrorCode"));
addCompanyTemplateResponse.setCode(_ctx.stringValue("AddCompanyTemplateResponse.Code"));
addCompanyTemplateResponse.setMessage(_ctx.stringValue("AddCompanyTemplateResponse.Message"));
addCompanyTemplateResponse.setDynamicMessage(_ctx.stringValue("AddCompanyTemplateResponse.DynamicMessage"));
addCompanyTemplateResponse.setDynamicCode(_ctx.stringValue("AddCompanyTemplateResponse.DynamicCode"));
return addCompanyTemplateResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/AddMaterialResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.AddMaterialResponse;
import com.aliyuncs.cloudesl.model.v20200201.AddMaterialResponse.Result;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddMaterialResponseUnmarshaller {
public static AddMaterialResponse unmarshall(AddMaterialResponse addMaterialResponse, UnmarshallerContext _ctx) {
addMaterialResponse.setRequestId(_ctx.stringValue("AddMaterialResponse.RequestId"));
addMaterialResponse.setSuccess(_ctx.booleanValue("AddMaterialResponse.Success"));
addMaterialResponse.setMessage(_ctx.stringValue("AddMaterialResponse.Message"));
addMaterialResponse.setErrorCode(_ctx.stringValue("AddMaterialResponse.ErrorCode"));
addMaterialResponse.setErrorMessage(_ctx.stringValue("AddMaterialResponse.ErrorMessage"));
addMaterialResponse.setCode(_ctx.stringValue("AddMaterialResponse.Code"));
addMaterialResponse.setDynamicCode(_ctx.stringValue("AddMaterialResponse.DynamicCode"));
addMaterialResponse.setDynamicMessage(_ctx.stringValue("AddMaterialResponse.DynamicMessage"));
Result result = new Result();
result.setSuccess(_ctx.booleanValue("AddMaterialResponse.Result.Success"));
result.setMessage(_ctx.stringValue("AddMaterialResponse.Result.Message"));
result.setDynamicMessage(_ctx.stringValue("AddMaterialResponse.Result.DynamicMessage"));
result.setDynamicCode(_ctx.stringValue("AddMaterialResponse.Result.DynamicCode"));
result.setErrorCode(_ctx.stringValue("AddMaterialResponse.Result.ErrorCode"));
addMaterialResponse.setResult(result);
return addMaterialResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/AddUserResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.AddUserResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AddUserResponseUnmarshaller {
public static AddUserResponse unmarshall(AddUserResponse addUserResponse, UnmarshallerContext _ctx) {
addUserResponse.setRequestId(_ctx.stringValue("AddUserResponse.RequestId"));
addUserResponse.setErrorMessage(_ctx.stringValue("AddUserResponse.ErrorMessage"));
addUserResponse.setErrorCode(_ctx.stringValue("AddUserResponse.ErrorCode"));
addUserResponse.setMessage(_ctx.stringValue("AddUserResponse.Message"));
addUserResponse.setDynamicCode(_ctx.stringValue("AddUserResponse.DynamicCode"));
addUserResponse.setCode(_ctx.stringValue("AddUserResponse.Code"));
addUserResponse.setDynamicMessage(_ctx.stringValue("AddUserResponse.DynamicMessage"));
addUserResponse.setSuccess(_ctx.booleanValue("AddUserResponse.Success"));
return addUserResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/ApplyCompanyTemplateVersionToStoresResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.ApplyCompanyTemplateVersionToStoresResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ApplyCompanyTemplateVersionToStoresResponseUnmarshaller {
public static ApplyCompanyTemplateVersionToStoresResponse unmarshall(ApplyCompanyTemplateVersionToStoresResponse applyCompanyTemplateVersionToStoresResponse, UnmarshallerContext _ctx) {
applyCompanyTemplateVersionToStoresResponse.setRequestId(_ctx.stringValue("ApplyCompanyTemplateVersionToStoresResponse.RequestId"));
applyCompanyTemplateVersionToStoresResponse.setErrorMessage(_ctx.stringValue("ApplyCompanyTemplateVersionToStoresResponse.ErrorMessage"));
applyCompanyTemplateVersionToStoresResponse.setSuccess(_ctx.booleanValue("ApplyCompanyTemplateVersionToStoresResponse.Success"));
applyCompanyTemplateVersionToStoresResponse.setErrorCode(_ctx.stringValue("ApplyCompanyTemplateVersionToStoresResponse.ErrorCode"));
applyCompanyTemplateVersionToStoresResponse.setCode(_ctx.stringValue("ApplyCompanyTemplateVersionToStoresResponse.Code"));
applyCompanyTemplateVersionToStoresResponse.setMessage(_ctx.stringValue("ApplyCompanyTemplateVersionToStoresResponse.Message"));
applyCompanyTemplateVersionToStoresResponse.setDynamicMessage(_ctx.stringValue("ApplyCompanyTemplateVersionToStoresResponse.DynamicMessage"));
applyCompanyTemplateVersionToStoresResponse.setDynamicCode(_ctx.stringValue("ApplyCompanyTemplateVersionToStoresResponse.DynamicCode"));
return applyCompanyTemplateVersionToStoresResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/ApplyImageDitheringResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.ApplyImageDitheringResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ApplyImageDitheringResponseUnmarshaller {
public static ApplyImageDitheringResponse unmarshall(ApplyImageDitheringResponse applyImageDitheringResponse, UnmarshallerContext _ctx) {
applyImageDitheringResponse.setRequestId(_ctx.stringValue("ApplyImageDitheringResponse.RequestId"));
applyImageDitheringResponse.setContent(_ctx.stringValue("ApplyImageDitheringResponse.Content"));
applyImageDitheringResponse.setSuccess(_ctx.booleanValue("ApplyImageDitheringResponse.Success"));
applyImageDitheringResponse.setMessage(_ctx.stringValue("ApplyImageDitheringResponse.Message"));
applyImageDitheringResponse.setErrorCode(_ctx.stringValue("ApplyImageDitheringResponse.ErrorCode"));
applyImageDitheringResponse.setErrorMessage(_ctx.stringValue("ApplyImageDitheringResponse.ErrorMessage"));
applyImageDitheringResponse.setCode(_ctx.stringValue("ApplyImageDitheringResponse.Code"));
applyImageDitheringResponse.setDynamicCode(_ctx.stringValue("ApplyImageDitheringResponse.DynamicCode"));
applyImageDitheringResponse.setDynamicMessage(_ctx.stringValue("ApplyImageDitheringResponse.DynamicMessage"));
return applyImageDitheringResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/AssignUserResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.AssignUserResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AssignUserResponseUnmarshaller {
public static AssignUserResponse unmarshall(AssignUserResponse assignUserResponse, UnmarshallerContext _ctx) {
assignUserResponse.setRequestId(_ctx.stringValue("AssignUserResponse.RequestId"));
assignUserResponse.setErrorMessage(_ctx.stringValue("AssignUserResponse.ErrorMessage"));
assignUserResponse.setErrorCode(_ctx.stringValue("AssignUserResponse.ErrorCode"));
assignUserResponse.setMessage(_ctx.stringValue("AssignUserResponse.Message"));
assignUserResponse.setDynamicCode(_ctx.stringValue("AssignUserResponse.DynamicCode"));
assignUserResponse.setCode(_ctx.stringValue("AssignUserResponse.Code"));
assignUserResponse.setDynamicMessage(_ctx.stringValue("AssignUserResponse.DynamicMessage"));
assignUserResponse.setSuccess(_ctx.booleanValue("AssignUserResponse.Success"));
return assignUserResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/BatchInsertItemsResponseUnmarshaller.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.cloudesl.transform.v20200201;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cloudesl.model.v20200201.BatchInsertItemsResponse;
import com.aliyuncs.cloudesl.model.v20200201.BatchInsertItemsResponse.BatchResult;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchInsertItemsResponseUnmarshaller {
public static BatchInsertItemsResponse unmarshall(BatchInsertItemsResponse batchInsertItemsResponse, UnmarshallerContext _ctx) {
batchInsertItemsResponse.setRequestId(_ctx.stringValue("BatchInsertItemsResponse.RequestId"));
batchInsertItemsResponse.setErrorMessage(_ctx.stringValue("BatchInsertItemsResponse.ErrorMessage"));
batchInsertItemsResponse.setSuccess(_ctx.booleanValue("BatchInsertItemsResponse.Success"));
batchInsertItemsResponse.setErrorCode(_ctx.stringValue("BatchInsertItemsResponse.ErrorCode"));
batchInsertItemsResponse.setCode(_ctx.stringValue("BatchInsertItemsResponse.Code"));
batchInsertItemsResponse.setMessage(_ctx.stringValue("BatchInsertItemsResponse.Message"));
batchInsertItemsResponse.setDynamicMessage(_ctx.stringValue("BatchInsertItemsResponse.DynamicMessage"));
batchInsertItemsResponse.setDynamicCode(_ctx.stringValue("BatchInsertItemsResponse.DynamicCode"));
List<BatchResult> batchResults = new ArrayList<BatchResult>();
for (int i = 0; i < _ctx.lengthValue("BatchInsertItemsResponse.BatchResults.Length"); i++) {
BatchResult batchResult = new BatchResult();
batchResult.setIndex(_ctx.integerValue("BatchInsertItemsResponse.BatchResults["+ i +"].Index"));
batchResult.setMessage(_ctx.stringValue("BatchInsertItemsResponse.BatchResults["+ i +"].Message"));
batchResult.setSuccess(_ctx.booleanValue("BatchInsertItemsResponse.BatchResults["+ i +"].Success"));
batchResult.setErrorCode(_ctx.stringValue("BatchInsertItemsResponse.BatchResults["+ i +"].ErrorCode"));
batchResults.add(batchResult);
}
batchInsertItemsResponse.setBatchResults(batchResults);
return batchInsertItemsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/BatchUpdateEventResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.BatchUpdateEventResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchUpdateEventResponseUnmarshaller {
public static BatchUpdateEventResponse unmarshall(BatchUpdateEventResponse batchUpdateEventResponse, UnmarshallerContext _ctx) {
batchUpdateEventResponse.setRequestId(_ctx.stringValue("BatchUpdateEventResponse.RequestId"));
batchUpdateEventResponse.setErrorMessage(_ctx.stringValue("BatchUpdateEventResponse.ErrorMessage"));
batchUpdateEventResponse.setSuccess(_ctx.booleanValue("BatchUpdateEventResponse.Success"));
batchUpdateEventResponse.setErrorCode(_ctx.stringValue("BatchUpdateEventResponse.ErrorCode"));
batchUpdateEventResponse.setCode(_ctx.stringValue("BatchUpdateEventResponse.Code"));
batchUpdateEventResponse.setMessage(_ctx.stringValue("BatchUpdateEventResponse.Message"));
batchUpdateEventResponse.setDynamicMessage(_ctx.stringValue("BatchUpdateEventResponse.DynamicMessage"));
batchUpdateEventResponse.setDynamicCode(_ctx.stringValue("BatchUpdateEventResponse.DynamicCode"));
return batchUpdateEventResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/BindDeviceLayoutResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.BindDeviceLayoutResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BindDeviceLayoutResponseUnmarshaller {
public static BindDeviceLayoutResponse unmarshall(BindDeviceLayoutResponse bindDeviceLayoutResponse, UnmarshallerContext _ctx) {
bindDeviceLayoutResponse.setRequestId(_ctx.stringValue("BindDeviceLayoutResponse.RequestId"));
bindDeviceLayoutResponse.setSuccess(_ctx.booleanValue("BindDeviceLayoutResponse.Success"));
bindDeviceLayoutResponse.setMessage(_ctx.stringValue("BindDeviceLayoutResponse.Message"));
bindDeviceLayoutResponse.setErrorCode(_ctx.stringValue("BindDeviceLayoutResponse.ErrorCode"));
bindDeviceLayoutResponse.setErrorMessage(_ctx.stringValue("BindDeviceLayoutResponse.ErrorMessage"));
bindDeviceLayoutResponse.setCode(_ctx.stringValue("BindDeviceLayoutResponse.Code"));
bindDeviceLayoutResponse.setDynamicCode(_ctx.stringValue("BindDeviceLayoutResponse.DynamicCode"));
bindDeviceLayoutResponse.setDynamicMessage(_ctx.stringValue("BindDeviceLayoutResponse.DynamicMessage"));
return bindDeviceLayoutResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/BindEslDeviceResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.BindEslDeviceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BindEslDeviceResponseUnmarshaller {
public static BindEslDeviceResponse unmarshall(BindEslDeviceResponse bindEslDeviceResponse, UnmarshallerContext _ctx) {
bindEslDeviceResponse.setRequestId(_ctx.stringValue("BindEslDeviceResponse.RequestId"));
bindEslDeviceResponse.setErrorMessage(_ctx.stringValue("BindEslDeviceResponse.ErrorMessage"));
bindEslDeviceResponse.setSuccess(_ctx.booleanValue("BindEslDeviceResponse.Success"));
bindEslDeviceResponse.setErrorCode(_ctx.stringValue("BindEslDeviceResponse.ErrorCode"));
bindEslDeviceResponse.setCode(_ctx.stringValue("BindEslDeviceResponse.Code"));
bindEslDeviceResponse.setMessage(_ctx.stringValue("BindEslDeviceResponse.Message"));
bindEslDeviceResponse.setDynamicMessage(_ctx.stringValue("BindEslDeviceResponse.DynamicMessage"));
bindEslDeviceResponse.setDynamicCode(_ctx.stringValue("BindEslDeviceResponse.DynamicCode"));
return bindEslDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/CheckServiceLinkedRoleForDeletingResponseUnmarshaller.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.cloudesl.transform.v20200201;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.cloudesl.model.v20200201.CheckServiceLinkedRoleForDeletingResponse;
import com.aliyuncs.cloudesl.model.v20200201.CheckServiceLinkedRoleForDeletingResponse.RoleUsage;
import com.aliyuncs.transform.UnmarshallerContext;
public class CheckServiceLinkedRoleForDeletingResponseUnmarshaller {
public static CheckServiceLinkedRoleForDeletingResponse unmarshall(CheckServiceLinkedRoleForDeletingResponse checkServiceLinkedRoleForDeletingResponse, UnmarshallerContext _ctx) {
checkServiceLinkedRoleForDeletingResponse.setRequestId(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.RequestId"));
checkServiceLinkedRoleForDeletingResponse.setDeletable(_ctx.booleanValue("CheckServiceLinkedRoleForDeletingResponse.Deletable"));
checkServiceLinkedRoleForDeletingResponse.setSuccess(_ctx.booleanValue("CheckServiceLinkedRoleForDeletingResponse.Success"));
checkServiceLinkedRoleForDeletingResponse.setMessage(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.Message"));
checkServiceLinkedRoleForDeletingResponse.setErrorCode(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.ErrorCode"));
checkServiceLinkedRoleForDeletingResponse.setErrorMessage(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.ErrorMessage"));
checkServiceLinkedRoleForDeletingResponse.setCode(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.Code"));
checkServiceLinkedRoleForDeletingResponse.setDynamicCode(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.DynamicCode"));
checkServiceLinkedRoleForDeletingResponse.setDynamicMessage(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.DynamicMessage"));
List<RoleUsage> roleUsages = new ArrayList<RoleUsage>();
for (int i = 0; i < _ctx.lengthValue("CheckServiceLinkedRoleForDeletingResponse.RoleUsages.Length"); i++) {
RoleUsage roleUsage = new RoleUsage();
roleUsage.setRegion(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.RoleUsages["+ i +"].Region"));
roleUsage.setResources(_ctx.stringValue("CheckServiceLinkedRoleForDeletingResponse.RoleUsages["+ i +"].Resources"));
roleUsages.add(roleUsage);
}
checkServiceLinkedRoleForDeletingResponse.setRoleUsages(roleUsages);
return checkServiceLinkedRoleForDeletingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/CopyCompanyTemplateViewResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.CopyCompanyTemplateViewResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CopyCompanyTemplateViewResponseUnmarshaller {
public static CopyCompanyTemplateViewResponse unmarshall(CopyCompanyTemplateViewResponse copyCompanyTemplateViewResponse, UnmarshallerContext _ctx) {
copyCompanyTemplateViewResponse.setRequestId(_ctx.stringValue("CopyCompanyTemplateViewResponse.RequestId"));
copyCompanyTemplateViewResponse.setErrorMessage(_ctx.stringValue("CopyCompanyTemplateViewResponse.ErrorMessage"));
copyCompanyTemplateViewResponse.setSuccess(_ctx.booleanValue("CopyCompanyTemplateViewResponse.Success"));
copyCompanyTemplateViewResponse.setErrorCode(_ctx.stringValue("CopyCompanyTemplateViewResponse.ErrorCode"));
copyCompanyTemplateViewResponse.setCode(_ctx.stringValue("CopyCompanyTemplateViewResponse.Code"));
copyCompanyTemplateViewResponse.setMessage(_ctx.stringValue("CopyCompanyTemplateViewResponse.Message"));
copyCompanyTemplateViewResponse.setDynamicMessage(_ctx.stringValue("CopyCompanyTemplateViewResponse.DynamicMessage"));
copyCompanyTemplateViewResponse.setDynamicCode(_ctx.stringValue("CopyCompanyTemplateViewResponse.DynamicCode"));
return copyCompanyTemplateViewResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/CopyLayoutResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.CopyLayoutResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CopyLayoutResponseUnmarshaller {
public static CopyLayoutResponse unmarshall(CopyLayoutResponse copyLayoutResponse, UnmarshallerContext _ctx) {
copyLayoutResponse.setRequestId(_ctx.stringValue("CopyLayoutResponse.RequestId"));
copyLayoutResponse.setSuccess(_ctx.booleanValue("CopyLayoutResponse.Success"));
copyLayoutResponse.setMessage(_ctx.stringValue("CopyLayoutResponse.Message"));
copyLayoutResponse.setErrorCode(_ctx.stringValue("CopyLayoutResponse.ErrorCode"));
copyLayoutResponse.setErrorMessage(_ctx.stringValue("CopyLayoutResponse.ErrorMessage"));
copyLayoutResponse.setCode(_ctx.stringValue("CopyLayoutResponse.Code"));
copyLayoutResponse.setDynamicCode(_ctx.stringValue("CopyLayoutResponse.DynamicCode"));
copyLayoutResponse.setDynamicMessage(_ctx.stringValue("CopyLayoutResponse.DynamicMessage"));
return copyLayoutResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/CopyTemplateGroupResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.CopyTemplateGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CopyTemplateGroupResponseUnmarshaller {
public static CopyTemplateGroupResponse unmarshall(CopyTemplateGroupResponse copyTemplateGroupResponse, UnmarshallerContext _ctx) {
copyTemplateGroupResponse.setRequestId(_ctx.stringValue("CopyTemplateGroupResponse.RequestId"));
copyTemplateGroupResponse.setSuccess(_ctx.booleanValue("CopyTemplateGroupResponse.Success"));
copyTemplateGroupResponse.setMessage(_ctx.stringValue("CopyTemplateGroupResponse.Message"));
copyTemplateGroupResponse.setErrorCode(_ctx.stringValue("CopyTemplateGroupResponse.ErrorCode"));
copyTemplateGroupResponse.setErrorMessage(_ctx.stringValue("CopyTemplateGroupResponse.ErrorMessage"));
copyTemplateGroupResponse.setCode(_ctx.stringValue("CopyTemplateGroupResponse.Code"));
copyTemplateGroupResponse.setDynamicCode(_ctx.stringValue("CopyTemplateGroupResponse.DynamicCode"));
copyTemplateGroupResponse.setDynamicMessage(_ctx.stringValue("CopyTemplateGroupResponse.DynamicMessage"));
return copyTemplateGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/CreateStoreResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.CreateStoreResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateStoreResponseUnmarshaller {
public static CreateStoreResponse unmarshall(CreateStoreResponse createStoreResponse, UnmarshallerContext _ctx) {
createStoreResponse.setRequestId(_ctx.stringValue("CreateStoreResponse.RequestId"));
createStoreResponse.setErrorMessage(_ctx.stringValue("CreateStoreResponse.ErrorMessage"));
createStoreResponse.setErrorCode(_ctx.stringValue("CreateStoreResponse.ErrorCode"));
createStoreResponse.setMessage(_ctx.stringValue("CreateStoreResponse.Message"));
createStoreResponse.setStoreId(_ctx.stringValue("CreateStoreResponse.StoreId"));
createStoreResponse.setDynamicCode(_ctx.stringValue("CreateStoreResponse.DynamicCode"));
createStoreResponse.setCode(_ctx.stringValue("CreateStoreResponse.Code"));
createStoreResponse.setDynamicMessage(_ctx.stringValue("CreateStoreResponse.DynamicMessage"));
createStoreResponse.setSuccess(_ctx.booleanValue("CreateStoreResponse.Success"));
return createStoreResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/DeleteApDeviceResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.DeleteApDeviceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteApDeviceResponseUnmarshaller {
public static DeleteApDeviceResponse unmarshall(DeleteApDeviceResponse deleteApDeviceResponse, UnmarshallerContext _ctx) {
deleteApDeviceResponse.setRequestId(_ctx.stringValue("DeleteApDeviceResponse.RequestId"));
deleteApDeviceResponse.setErrorMessage(_ctx.stringValue("DeleteApDeviceResponse.ErrorMessage"));
deleteApDeviceResponse.setErrorCode(_ctx.stringValue("DeleteApDeviceResponse.ErrorCode"));
deleteApDeviceResponse.setMessage(_ctx.stringValue("DeleteApDeviceResponse.Message"));
deleteApDeviceResponse.setDynamicCode(_ctx.stringValue("DeleteApDeviceResponse.DynamicCode"));
deleteApDeviceResponse.setCode(_ctx.stringValue("DeleteApDeviceResponse.Code"));
deleteApDeviceResponse.setDynamicMessage(_ctx.stringValue("DeleteApDeviceResponse.DynamicMessage"));
deleteApDeviceResponse.setSuccess(_ctx.booleanValue("DeleteApDeviceResponse.Success"));
return deleteApDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/DeleteCompanyTemplateResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.DeleteCompanyTemplateResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteCompanyTemplateResponseUnmarshaller {
public static DeleteCompanyTemplateResponse unmarshall(DeleteCompanyTemplateResponse deleteCompanyTemplateResponse, UnmarshallerContext _ctx) {
deleteCompanyTemplateResponse.setRequestId(_ctx.stringValue("DeleteCompanyTemplateResponse.RequestId"));
deleteCompanyTemplateResponse.setErrorMessage(_ctx.stringValue("DeleteCompanyTemplateResponse.ErrorMessage"));
deleteCompanyTemplateResponse.setSuccess(_ctx.booleanValue("DeleteCompanyTemplateResponse.Success"));
deleteCompanyTemplateResponse.setErrorCode(_ctx.stringValue("DeleteCompanyTemplateResponse.ErrorCode"));
deleteCompanyTemplateResponse.setCode(_ctx.stringValue("DeleteCompanyTemplateResponse.Code"));
deleteCompanyTemplateResponse.setMessage(_ctx.stringValue("DeleteCompanyTemplateResponse.Message"));
deleteCompanyTemplateResponse.setDynamicMessage(_ctx.stringValue("DeleteCompanyTemplateResponse.DynamicMessage"));
deleteCompanyTemplateResponse.setDynamicCode(_ctx.stringValue("DeleteCompanyTemplateResponse.DynamicCode"));
return deleteCompanyTemplateResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudesl/2.1.2/com/aliyuncs/cloudesl/transform/v20200201/DeleteItemResponseUnmarshaller.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.cloudesl.transform.v20200201;
import com.aliyuncs.cloudesl.model.v20200201.DeleteItemResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteItemResponseUnmarshaller {
public static DeleteItemResponse unmarshall(DeleteItemResponse deleteItemResponse, UnmarshallerContext _ctx) {
deleteItemResponse.setRequestId(_ctx.stringValue("DeleteItemResponse.RequestId"));
deleteItemResponse.setCode(_ctx.stringValue("DeleteItemResponse.Code"));
deleteItemResponse.setDynamicCode(_ctx.stringValue("DeleteItemResponse.DynamicCode"));
deleteItemResponse.setDynamicMessage(_ctx.stringValue("DeleteItemResponse.DynamicMessage"));
deleteItemResponse.setErrorCode(_ctx.stringValue("DeleteItemResponse.ErrorCode"));
deleteItemResponse.setErrorMessage(_ctx.stringValue("DeleteItemResponse.ErrorMessage"));
deleteItemResponse.setMessage(_ctx.stringValue("DeleteItemResponse.Message"));
deleteItemResponse.setSuccess(_ctx.booleanValue("DeleteItemResponse.Success"));
return deleteItemResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.