com.aliyun.dingtalklive_1_0.models.GetUserCreateLiveListRequest 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 GetUserCreateLiveListRequest extends TeaModel {
@NameInMap("endTime")
public Long endTime;
@NameInMap("startTime")
public Long startTime;
@NameInMap("statuses")
public java.util.List statuses;
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* ""
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* 5yAiiJDWiiCJpd3Thhx7P5fgiEiE
*/
@NameInMap("unionId")
public String unionId;
public static GetUserCreateLiveListRequest build(java.util.Map map) throws Exception {
GetUserCreateLiveListRequest self = new GetUserCreateLiveListRequest();
return TeaModel.build(map, self);
}
public GetUserCreateLiveListRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public GetUserCreateLiveListRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public GetUserCreateLiveListRequest setStatuses(java.util.List statuses) {
this.statuses = statuses;
return this;
}
public java.util.List getStatuses() {
return this.statuses;
}
public GetUserCreateLiveListRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetUserCreateLiveListRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetUserCreateLiveListRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetUserCreateLiveListRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}