com.aliyun.dingtalkcalendar_1_0.models.ListInstancesRequest 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.dingtalkcalendar_1_0.models;
import com.aliyun.tea.*;
public class ListInstancesRequest extends TeaModel {
/**
* example:
* 100
*/
@NameInMap("maxAttendees")
public Integer maxAttendees;
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
/**
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
*/
@NameInMap("timeMax")
public String timeMax;
/**
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
*/
@NameInMap("timeMin")
public String timeMin;
public static ListInstancesRequest build(java.util.Map map) throws Exception {
ListInstancesRequest self = new ListInstancesRequest();
return TeaModel.build(map, self);
}
public ListInstancesRequest setMaxAttendees(Integer maxAttendees) {
this.maxAttendees = maxAttendees;
return this;
}
public Integer getMaxAttendees() {
return this.maxAttendees;
}
public ListInstancesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListInstancesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListInstancesRequest setTimeMax(String timeMax) {
this.timeMax = timeMax;
return this;
}
public String getTimeMax() {
return this.timeMax;
}
public ListInstancesRequest setTimeMin(String timeMin) {
this.timeMin = timeMin;
return this;
}
public String getTimeMin() {
return this.timeMin;
}
}