All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sls20201230.models.ListSavedSearchResponseBody Maven / Gradle / Ivy

There is a newer version: 5.4.1
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy