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

com.aliyun.dingtalkjobs_1_0.models.PostResumeRequest 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.dingtalkjobs_1_0.models;

import com.aliyun.tea.*;

public class PostResumeRequest extends TeaModel {
    @NameInMap("jobId")
    public Long jobId;

    @NameInMap("userIdentify")
    public String userIdentify;

    public static PostResumeRequest build(java.util.Map map) throws Exception {
        PostResumeRequest self = new PostResumeRequest();
        return TeaModel.build(map, self);
    }

    public PostResumeRequest setJobId(Long jobId) {
        this.jobId = jobId;
        return this;
    }
    public Long getJobId() {
        return this.jobId;
    }

    public PostResumeRequest setUserIdentify(String userIdentify) {
        this.userIdentify = userIdentify;
        return this;
    }
    public String getUserIdentify() {
        return this.userIdentify;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy