
com.aliyun.dingtalkdoc_1_0.models.GetRangeRequest Maven / Gradle / Ivy
// 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