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