![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkworkflow_1_0.models.GetHandSignDownloadUrlRequest 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.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class GetHandSignDownloadUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* AzBltRlvKukX3Wxxxx
*/
@NameInMap("handSignToken")
public String handSignToken;
/**
* This parameter is required.
*
* example:
* ag187wewxxxx
*/
@NameInMap("processInstanceId")
public String processInstanceId;
public static GetHandSignDownloadUrlRequest build(java.util.Map map) throws Exception {
GetHandSignDownloadUrlRequest self = new GetHandSignDownloadUrlRequest();
return TeaModel.build(map, self);
}
public GetHandSignDownloadUrlRequest setHandSignToken(String handSignToken) {
this.handSignToken = handSignToken;
return this;
}
public String getHandSignToken() {
return this.handSignToken;
}
public GetHandSignDownloadUrlRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy