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

com.aliyun.dingtalklive_1_0.models.GetUserWatchLiveListRequest 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.dingtalklive_1_0.models;

import com.aliyun.tea.*;

public class GetUserWatchLiveListRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

0

*/ @NameInMap("filterType") public Integer filterType; /** *

This parameter is required.

* * example: *

30

*/ @NameInMap("maxResults") public Integer maxResults; /** * example: *

preOrStartTime_desc_1658804913000

*/ @NameInMap("nextToken") public String nextToken; /** *

This parameter is required.

* * example: *

6crtQT2XOgPHviiPvXhhiP6gdhiE

*/ @NameInMap("unionId") public String unionId; public static GetUserWatchLiveListRequest build(java.util.Map map) throws Exception { GetUserWatchLiveListRequest self = new GetUserWatchLiveListRequest(); return TeaModel.build(map, self); } public GetUserWatchLiveListRequest setFilterType(Integer filterType) { this.filterType = filterType; return this; } public Integer getFilterType() { return this.filterType; } public GetUserWatchLiveListRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public GetUserWatchLiveListRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public GetUserWatchLiveListRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy