com.aliyun.dingtalkchengfeng_1_0.models.CfJobPostResp 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class CfJobPostResp extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1234
*/
@NameInMap("jobPostCode")
public String jobPostCode;
/**
* This parameter is required.
*
* example:
* 技术岗
*/
@NameInMap("name")
public String name;
public static CfJobPostResp build(java.util.Map map) throws Exception {
CfJobPostResp self = new CfJobPostResp();
return TeaModel.build(map, self);
}
public CfJobPostResp setJobPostCode(String jobPostCode) {
this.jobPostCode = jobPostCode;
return this;
}
public String getJobPostCode() {
return this.jobPostCode;
}
public CfJobPostResp setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}