com.aliyuncs.sae.model.v20190506.ListChangeOrdersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-sae Show documentation
Show all versions of aliyun-java-sdk-sae Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.sae.model.v20190506;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.sae.transform.v20190506.ListChangeOrdersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListChangeOrdersResponse extends AcsResponse {
private String requestId;
private String message;
private String traceId;
private String errorCode;
private String code;
private Boolean success;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getTraceId() {
return this.traceId;
}
public void setTraceId(String traceId) {
this.traceId = traceId;
}
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 Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer currentPage;
private Integer totalSize;
private Integer pageSize;
private List changeOrderList;
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalSize() {
return this.totalSize;
}
public void setTotalSize(Integer totalSize) {
this.totalSize = totalSize;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List getChangeOrderList() {
return this.changeOrderList;
}
public void setChangeOrderList(List changeOrderList) {
this.changeOrderList = changeOrderList;
}
public static class ChangeOrder {
private Integer status;
private String finishTime;
private String createTime;
private String userId;
private String source;
private Integer batchCount;
private String createUserId;
private String coTypeCode;
private String changeOrderId;
private String batchType;
private String groupId;
private String description;
private String coType;
private String appId;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getFinishTime() {
return this.finishTime;
}
public void setFinishTime(String finishTime) {
this.finishTime = finishTime;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public Integer getBatchCount() {
return this.batchCount;
}
public void setBatchCount(Integer batchCount) {
this.batchCount = batchCount;
}
public String getCreateUserId() {
return this.createUserId;
}
public void setCreateUserId(String createUserId) {
this.createUserId = createUserId;
}
public String getCoTypeCode() {
return this.coTypeCode;
}
public void setCoTypeCode(String coTypeCode) {
this.coTypeCode = coTypeCode;
}
public String getChangeOrderId() {
return this.changeOrderId;
}
public void setChangeOrderId(String changeOrderId) {
this.changeOrderId = changeOrderId;
}
public String getBatchType() {
return this.batchType;
}
public void setBatchType(String batchType) {
this.batchType = batchType;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCoType() {
return this.coType;
}
public void setCoType(String coType) {
this.coType = coType;
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
}
}
@Override
public ListChangeOrdersResponse getInstance(UnmarshallerContext context) {
return ListChangeOrdersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy