com.aliyun.cmn20200825.models.ListLogsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmn20200825 Show documentation
Show all versions of cmn20200825 Show documentation
Alibaba Cloud cmn (20200825) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cmn20200825.models;
import com.aliyun.tea.*;
public class ListLogsResponse extends TeaModel {
@NameInMap("headers")
@Validation(required = true)
public java.util.Map headers;
@NameInMap("body")
@Validation(required = true)
public ListLogsResponseBody body;
public static ListLogsResponse build(java.util.Map map) throws Exception {
ListLogsResponse self = new ListLogsResponse();
return TeaModel.build(map, self);
}
public ListLogsResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public ListLogsResponse setBody(ListLogsResponseBody body) {
this.body = body;
return this;
}
public ListLogsResponseBody getBody() {
return this.body;
}
}