com.aliyun.dyvmsapi20170525.models.SetTransferCalleePoolConfigResponse 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 SetTransferCalleePoolConfigResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public SetTransferCalleePoolConfigResponseBody body;
public static SetTransferCalleePoolConfigResponse build(java.util.Map map) throws Exception {
SetTransferCalleePoolConfigResponse self = new SetTransferCalleePoolConfigResponse();
return TeaModel.build(map, self);
}
public SetTransferCalleePoolConfigResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public SetTransferCalleePoolConfigResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public SetTransferCalleePoolConfigResponse setBody(SetTransferCalleePoolConfigResponseBody body) {
this.body = body;
return this;
}
public SetTransferCalleePoolConfigResponseBody getBody() {
return this.body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy