com.aliyun.sls20201230.models.ListSavedSearchResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sls20201230 Show documentation
Show all versions of sls20201230 Show documentation
Alibaba Cloud Log Service (20201230) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sls20201230.models;
import com.aliyun.tea.*;
public class ListSavedSearchResponseBody extends TeaModel {
@NameInMap("count")
public Integer count;
@NameInMap("savedsearchItems")
public java.util.List savedsearchItems;
@NameInMap("total")
public Integer total;
public static ListSavedSearchResponseBody build(java.util.Map map) throws Exception {
ListSavedSearchResponseBody self = new ListSavedSearchResponseBody();
return TeaModel.build(map, self);
}
public ListSavedSearchResponseBody setCount(Integer count) {
this.count = count;
return this;
}
public Integer getCount() {
return this.count;
}
public ListSavedSearchResponseBody setSavedsearchItems(java.util.List savedsearchItems) {
this.savedsearchItems = savedsearchItems;
return this;
}
public java.util.List getSavedsearchItems() {
return this.savedsearchItems;
}
public ListSavedSearchResponseBody setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}