com.aliyun.dingtalkjobs_1_0.models.PostResumeRequest 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.dingtalkjobs_1_0.models;
import com.aliyun.tea.*;
public class PostResumeRequest extends TeaModel {
@NameInMap("jobId")
public Long jobId;
@NameInMap("userIdentify")
public String userIdentify;
public static PostResumeRequest build(java.util.Map map) throws Exception {
PostResumeRequest self = new PostResumeRequest();
return TeaModel.build(map, self);
}
public PostResumeRequest setJobId(Long jobId) {
this.jobId = jobId;
return this;
}
public Long getJobId() {
return this.jobId;
}
public PostResumeRequest setUserIdentify(String userIdentify) {
this.userIdentify = userIdentify;
return this;
}
public String getUserIdentify() {
return this.userIdentify;
}
}