com.aliyuncs.baas.model.v20181221.DescribeTasksResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-baas Show documentation
Show all versions of aliyun-java-sdk-baas Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.baas.model.v20181221;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.baas.transform.v20181221.DescribeTasksResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeTasksResponse extends AcsResponse {
private String dynamicMessage;
private String requestId;
private Integer errorCode;
private Boolean success;
private String dynamicCode;
private List result;
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 Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public List getResult() {
return this.result;
}
public void setResult(List result) {
this.result = result;
}
public static class Task {
private String action;
private String result;
private String sender;
private String operationType;
private Boolean handled;
private String responseTime;
private String target;
private Integer taskId;
private Long requestTime;
public String getAction() {
return this.action;
}
public void setAction(String action) {
this.action = action;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
public String getSender() {
return this.sender;
}
public void setSender(String sender) {
this.sender = sender;
}
public String getOperationType() {
return this.operationType;
}
public void setOperationType(String operationType) {
this.operationType = operationType;
}
public Boolean getHandled() {
return this.handled;
}
public void setHandled(Boolean handled) {
this.handled = handled;
}
public String getResponseTime() {
return this.responseTime;
}
public void setResponseTime(String responseTime) {
this.responseTime = responseTime;
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
public Integer getTaskId() {
return this.taskId;
}
public void setTaskId(Integer taskId) {
this.taskId = taskId;
}
public Long getRequestTime() {
return this.requestTime;
}
public void setRequestTime(Long requestTime) {
this.requestTime = requestTime;
}
}
@Override
public DescribeTasksResponse getInstance(UnmarshallerContext context) {
return DescribeTasksResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy