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