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

com.aliyun.dingtalkats_1_0.models.GetApplicationRegFormByFlowIdResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkats_1_0.models;

import com.aliyun.tea.*;

public class GetApplicationRegFormByFlowIdResponseBody extends TeaModel {
    // 候选人标识
    @NameInMap("candidateId")
    public String candidateId;

    // 邀填人员工标识
    @NameInMap("creatorUserId")
    public String creatorUserId;

    // 招聘流程标识
    @NameInMap("flowId")
    public String flowId;

    // 表单标识
    @NameInMap("formId")
    public String formId;

    // 创建时间(邀填时间,单位:毫秒)
    @NameInMap("gmtCreateMillis")
    public Long gmtCreateMillis;

    // 更新时间(填写时间,单位:毫秒),仅当表单状态为已填写时有效
    @NameInMap("gmtModifiedMillis")
    public Long gmtModifiedMillis;

    // 职位标识
    @NameInMap("jobId")
    public String jobId;

    // 表单状态(0表示未填写,1表示已填写)
    @NameInMap("status")
    public Integer status;

    // 模板标识
    @NameInMap("templateId")
    public String templateId;

    // 模板版本
    @NameInMap("templateVersion")
    public Integer templateVersion;

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

    public GetApplicationRegFormByFlowIdResponseBody setCandidateId(String candidateId) {
        this.candidateId = candidateId;
        return this;
    }
    public String getCandidateId() {
        return this.candidateId;
    }

    public GetApplicationRegFormByFlowIdResponseBody setCreatorUserId(String creatorUserId) {
        this.creatorUserId = creatorUserId;
        return this;
    }
    public String getCreatorUserId() {
        return this.creatorUserId;
    }

    public GetApplicationRegFormByFlowIdResponseBody setFlowId(String flowId) {
        this.flowId = flowId;
        return this;
    }
    public String getFlowId() {
        return this.flowId;
    }

    public GetApplicationRegFormByFlowIdResponseBody setFormId(String formId) {
        this.formId = formId;
        return this;
    }
    public String getFormId() {
        return this.formId;
    }

    public GetApplicationRegFormByFlowIdResponseBody setGmtCreateMillis(Long gmtCreateMillis) {
        this.gmtCreateMillis = gmtCreateMillis;
        return this;
    }
    public Long getGmtCreateMillis() {
        return this.gmtCreateMillis;
    }

    public GetApplicationRegFormByFlowIdResponseBody setGmtModifiedMillis(Long gmtModifiedMillis) {
        this.gmtModifiedMillis = gmtModifiedMillis;
        return this;
    }
    public Long getGmtModifiedMillis() {
        return this.gmtModifiedMillis;
    }

    public GetApplicationRegFormByFlowIdResponseBody setJobId(String jobId) {
        this.jobId = jobId;
        return this;
    }
    public String getJobId() {
        return this.jobId;
    }

    public GetApplicationRegFormByFlowIdResponseBody setStatus(Integer status) {
        this.status = status;
        return this;
    }
    public Integer getStatus() {
        return this.status;
    }

    public GetApplicationRegFormByFlowIdResponseBody setTemplateId(String templateId) {
        this.templateId = templateId;
        return this;
    }
    public String getTemplateId() {
        return this.templateId;
    }

    public GetApplicationRegFormByFlowIdResponseBody setTemplateVersion(Integer templateVersion) {
        this.templateVersion = templateVersion;
        return this;
    }
    public Integer getTemplateVersion() {
        return this.templateVersion;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy