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

com.aliyun.dingtalkdoc_2_0.models.ListFeedsResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class ListFeedsResponseBody extends TeaModel {
    @NameInMap("hasMore")
    public Boolean hasMore;

    @NameInMap("items")
    public java.util.List items;

    /**
     * example:
     * 

abcdef

*/ @NameInMap("nextToken") public String nextToken; public static ListFeedsResponseBody build(java.util.Map map) throws Exception { ListFeedsResponseBody self = new ListFeedsResponseBody(); return TeaModel.build(map, self); } public ListFeedsResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public ListFeedsResponseBody setItems(java.util.List items) { this.items = items; return this; } public java.util.List getItems() { return this.items; } public ListFeedsResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public static class ListFeedsResponseBodyItems extends TeaModel { /** * example: *

"{}"

*/ @NameInMap("content") public String content; /** * example: *

12340000

*/ @NameInMap("time") public Long time; /** * example: *

1

*/ @NameInMap("type") public Integer type; public static ListFeedsResponseBodyItems build(java.util.Map map) throws Exception { ListFeedsResponseBodyItems self = new ListFeedsResponseBodyItems(); return TeaModel.build(map, self); } public ListFeedsResponseBodyItems setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public ListFeedsResponseBodyItems setTime(Long time) { this.time = time; return this; } public Long getTime() { return this.time; } public ListFeedsResponseBodyItems setType(Integer type) { this.type = type; return this; } public Integer getType() { return this.type; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy