com.aliyun.dingtalkdoc_2_0.models.QueryItemByUrlRequest 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_2_0.models;
import com.aliyun.tea.*;
public class QueryItemByUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* YEp3JcM******UIbhwiE
*/
@NameInMap("operatorId")
public String operatorId;
/**
* This parameter is required.
*
* example:
* https://alidocs.dingtalk.com/i/nodes/m0Xw6OYE4D7VLeaBP***
*/
@NameInMap("url")
public String url;
@NameInMap("withStatisticalInfo")
public Boolean withStatisticalInfo;
public static QueryItemByUrlRequest build(java.util.Map map) throws Exception {
QueryItemByUrlRequest self = new QueryItemByUrlRequest();
return TeaModel.build(map, self);
}
public QueryItemByUrlRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public QueryItemByUrlRequest setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public QueryItemByUrlRequest setWithStatisticalInfo(Boolean withStatisticalInfo) {
this.withStatisticalInfo = withStatisticalInfo;
return this;
}
public Boolean getWithStatisticalInfo() {
return this.withStatisticalInfo;
}
}