![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalklink_1_0.models.GetPictureDownloadUrlRequest 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.dingtalklink_1_0.models;
import com.aliyun.tea.*;
public class GetPictureDownloadUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* UgIzXXo+Rp3Rqcts7BE08y49Jr6iu6xW4iQ
*/
@NameInMap("downloadCode")
public String downloadCode;
/**
* This parameter is required.
*
* example:
* sid001234
*/
@NameInMap("sessionId")
public String sessionId;
public static GetPictureDownloadUrlRequest build(java.util.Map map) throws Exception {
GetPictureDownloadUrlRequest self = new GetPictureDownloadUrlRequest();
return TeaModel.build(map, self);
}
public GetPictureDownloadUrlRequest setDownloadCode(String downloadCode) {
this.downloadCode = downloadCode;
return this;
}
public String getDownloadCode() {
return this.downloadCode;
}
public GetPictureDownloadUrlRequest setSessionId(String sessionId) {
this.sessionId = sessionId;
return this;
}
public String getSessionId() {
return this.sessionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy