![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdoc_1_0.models.GetRangeRequest 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.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class GetRangeRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("operatorId")
public String operatorId;
/**
* example:
* select
*/
@NameInMap("select")
public String select;
public static GetRangeRequest build(java.util.Map map) throws Exception {
GetRangeRequest self = new GetRangeRequest();
return TeaModel.build(map, self);
}
public GetRangeRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public GetRangeRequest setSelect(String select) {
this.select = select;
return this;
}
public String getSelect() {
return this.select;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy