
com.aliyun.dingtalkchengfeng_1_0.models.GetJobPostRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class GetJobPostRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1234
*/
@NameInMap("jobPostCode")
public String jobPostCode;
public static GetJobPostRequest build(java.util.Map map) throws Exception {
GetJobPostRequest self = new GetJobPostRequest();
return TeaModel.build(map, self);
}
public GetJobPostRequest setJobPostCode(String jobPostCode) {
this.jobPostCode = jobPostCode;
return this;
}
public String getJobPostCode() {
return this.jobPostCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy