com.aliyun.dingtalkproject_1_0.models.UpdateWorkTimeApproveRequest 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 UpdateWorkTimeApproveRequest extends TeaModel {
/**
* example:
* 2023-04-04T00:00:00.000Z
*/
@NameInMap("finishTime")
public String finishTime;
/**
* example:
* 1233
*/
@NameInMap("instanceId")
public String instanceId;
/**
* example:
* NEW
*/
@NameInMap("status")
public String status;
/**
* example:
* 2023-04-04T00:00:00.000Z
*/
@NameInMap("submitTime")
public String submitTime;
/**
* example:
* xxxx 用工申请
*/
@NameInMap("title")
public String title;
/**
* example:
*
*/
@NameInMap("url")
public String url;
public static UpdateWorkTimeApproveRequest build(java.util.Map map) throws Exception {
UpdateWorkTimeApproveRequest self = new UpdateWorkTimeApproveRequest();
return TeaModel.build(map, self);
}
public UpdateWorkTimeApproveRequest setFinishTime(String finishTime) {
this.finishTime = finishTime;
return this;
}
public String getFinishTime() {
return this.finishTime;
}
public UpdateWorkTimeApproveRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public UpdateWorkTimeApproveRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public UpdateWorkTimeApproveRequest setSubmitTime(String submitTime) {
this.submitTime = submitTime;
return this;
}
public String getSubmitTime() {
return this.submitTime;
}
public UpdateWorkTimeApproveRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public UpdateWorkTimeApproveRequest setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}