com.aliyun.dingtalkproject_1_0.models.UpdateTaskExecutorRequest 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.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class UpdateTaskExecutorRequest extends TeaModel {
/**
* example:
* 0517xxxxxxx
*/
@NameInMap("executorId")
public String executorId;
public static UpdateTaskExecutorRequest build(java.util.Map map) throws Exception {
UpdateTaskExecutorRequest self = new UpdateTaskExecutorRequest();
return TeaModel.build(map, self);
}
public UpdateTaskExecutorRequest setExecutorId(String executorId) {
this.executorId = executorId;
return this;
}
public String getExecutorId() {
return this.executorId;
}
}