com.aliyun.dingtalkcalendar_1_0.models.GetSignOutListRequest 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 GetSignOutListRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* sign_out
*/
@NameInMap("type")
public String type;
public static GetSignOutListRequest build(java.util.Map map) throws Exception {
GetSignOutListRequest self = new GetSignOutListRequest();
return TeaModel.build(map, self);
}
public GetSignOutListRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetSignOutListRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetSignOutListRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}