![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkassistant_1_0.models.ListVisibleAssistantRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkassistant_1_0.models;
import com.aliyun.tea.*;
public class ListVisibleAssistantRequest extends TeaModel {
@NameInMap("cursor")
public Long cursor;
/**
* This parameter is required.
*/
@NameInMap("pageSize")
public Integer pageSize;
/**
* This parameter is required.
*/
@NameInMap("unionId")
public String unionId;
public static ListVisibleAssistantRequest build(java.util.Map map) throws Exception {
ListVisibleAssistantRequest self = new ListVisibleAssistantRequest();
return TeaModel.build(map, self);
}
public ListVisibleAssistantRequest setCursor(Long cursor) {
this.cursor = cursor;
return this;
}
public Long getCursor() {
return this.cursor;
}
public ListVisibleAssistantRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListVisibleAssistantRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy