com.aliyun.dingtalkchengfeng_1_0.models.CfJobPositionResp 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 CfJobPositionResp extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("jobPositionCode")
public String jobPositionCode;
/**
* This parameter is required.
*
* example:
* Java开发
*/
@NameInMap("name")
public String name;
public static CfJobPositionResp build(java.util.Map map) throws Exception {
CfJobPositionResp self = new CfJobPositionResp();
return TeaModel.build(map, self);
}
public CfJobPositionResp setJobPositionCode(String jobPositionCode) {
this.jobPositionCode = jobPositionCode;
return this;
}
public String getJobPositionCode() {
return this.jobPositionCode;
}
public CfJobPositionResp setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}