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