All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkesign_2_0.models.UsersRealnameRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkesign_2_0.models;

import com.aliyun.tea.*;

public class UsersRealnameRequest extends TeaModel {
    @NameInMap("redirectUrl")
    public String redirectUrl;

    /**
     * 

This parameter is required.

*/ @NameInMap("userId") public String userId; public static UsersRealnameRequest build(java.util.Map map) throws Exception { UsersRealnameRequest self = new UsersRealnameRequest(); return TeaModel.build(map, self); } public UsersRealnameRequest setRedirectUrl(String redirectUrl) { this.redirectUrl = redirectUrl; return this; } public String getRedirectUrl() { return this.redirectUrl; } public UsersRealnameRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy