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