![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkesign_1_0.models.GetUserRealnameUrlRequest 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.dingtalkesign_1_0.models;
import com.aliyun.tea.*;
public class GetUserRealnameUrlRequest extends TeaModel {
@NameInMap("redirectUrl")
public String redirectUrl;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static GetUserRealnameUrlRequest build(java.util.Map map) throws Exception {
GetUserRealnameUrlRequest self = new GetUserRealnameUrlRequest();
return TeaModel.build(map, self);
}
public GetUserRealnameUrlRequest setRedirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
return this;
}
public String getRedirectUrl() {
return this.redirectUrl;
}
public GetUserRealnameUrlRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy