com.aliyun.dyvmsapi20170525.models.ListCallTaskResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dyvmsapi20170525 Show documentation
Show all versions of dyvmsapi20170525 Show documentation
Aliyun DYSMSAPI SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyvmsapi20170525.models;
import com.aliyun.tea.*;
public class ListCallTaskResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCallTaskResponseBody body;
public static ListCallTaskResponse build(java.util.Map map) throws Exception {
ListCallTaskResponse self = new ListCallTaskResponse();
return TeaModel.build(map, self);
}
public ListCallTaskResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public ListCallTaskResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCallTaskResponse setBody(ListCallTaskResponseBody body) {
this.body = body;
return this;
}
public ListCallTaskResponseBody getBody() {
return this.body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy