
com.aliyun.dingtalkats_1_0.models.GetApplicationRegFormByFlowIdResponseBody Maven / Gradle / Ivy
// 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 {
/**
* This parameter is required.
*
* example:
* xxx
*/
@NameInMap("candidateId")
public String candidateId;
/**
* This parameter is required.
*
* example:
* manager5875
*/
@NameInMap("creatorUserId")
public String creatorUserId;
/**
* This parameter is required.
*
* example:
* flowXXX
*/
@NameInMap("flowId")
public String flowId;
/**
* This parameter is required.
*
* example:
* formXXX
*/
@NameInMap("formId")
public String formId;
/**
* This parameter is required.
*
* example:
* 1626775016427
*/
@NameInMap("gmtCreateMillis")
public Long gmtCreateMillis;
/**
* This parameter is required.
*
* example:
* 1626775016427
*/
@NameInMap("gmtModifiedMillis")
public Long gmtModifiedMillis;
/**
* This parameter is required.
*
* example:
* jobXXX
*/
@NameInMap("jobId")
public String jobId;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("status")
public Integer status;
/**
* This parameter is required.
*
* example:
* templateXXX
*/
@NameInMap("templateId")
public String templateId;
/**
* This parameter is required.
*
* example:
* 0
*/
@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 - 2025 Weber Informatics LLC | Privacy Policy