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

com.aliyun.dingtalkchengfeng_1_0.models.CfJobPostResp 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy