com.aliyun.dingtalklive_1_0.models.GetUserWatchLiveListRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}