All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkchengfeng_1_0.models.CfJobPositionResp Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy