
com.aliyun.dingtalkdoc_1_0.models.GetTemplateByIdRequest 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 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