com.aliyun.sdk.service.dyvmsapi20170525.models.QueryRobotInfoListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dyvmsapi20170525 Show documentation
Show all versions of alibabacloud-dyvmsapi20170525 Show documentation
Alibaba Cloud Dyvmsapi (20170525) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dyvmsapi20170525.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryRobotInfoListResponse} extends {@link TeaModel}
*
* QueryRobotInfoListResponse
*/
public class QueryRobotInfoListResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private QueryRobotInfoListResponseBody body;
private QueryRobotInfoListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryRobotInfoListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public QueryRobotInfoListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryRobotInfoListResponseBody body);
@Override
QueryRobotInfoListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryRobotInfoListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryRobotInfoListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(QueryRobotInfoListResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryRobotInfoListResponse build() {
return new QueryRobotInfoListResponse(this);
}
}
}