com.aliyun.dingtalkcontract_1_0.models.EsignQueryApprovalInfoRequest 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.dingtalkcontract_1_0.models;
import com.aliyun.tea.*;
public class EsignQueryApprovalInfoRequest extends TeaModel {
/**
* example:
* dingd0c871e2dfc941a34ac5d6980864d335
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* 5556ae0359c64c4b9491c0c3c339341f
*/
@NameInMap("esignFlowId")
public String esignFlowId;
/**
* example:
* PbnhW6rVXRg8u6T4NiiOwwQiEiE
*/
@NameInMap("unionId")
public String unionId;
public static EsignQueryApprovalInfoRequest build(java.util.Map map) throws Exception {
EsignQueryApprovalInfoRequest self = new EsignQueryApprovalInfoRequest();
return TeaModel.build(map, self);
}
public EsignQueryApprovalInfoRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public EsignQueryApprovalInfoRequest setEsignFlowId(String esignFlowId) {
this.esignFlowId = esignFlowId;
return this;
}
public String getEsignFlowId() {
return this.esignFlowId;
}
public EsignQueryApprovalInfoRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}