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

com.aliyun.sdk.service.emr20210320.models.UserParam Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.emr20210320.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link UserParam} extends {@link TeaModel}
 *
 * 

UserParam

*/ public class UserParam extends TeaModel { @com.aliyun.core.annotation.NameInMap("Password") private String password; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; @com.aliyun.core.annotation.NameInMap("UserName") private String userName; private UserParam(Builder builder) { this.password = builder.password; this.userId = builder.userId; this.userName = builder.userName; } public static Builder builder() { return new Builder(); } public static UserParam create() { return builder().build(); } /** * @return password */ public String getPassword() { return this.password; } /** * @return userId */ public String getUserId() { return this.userId; } /** * @return userName */ public String getUserName() { return this.userName; } public static final class Builder { private String password; private String userId; private String userName; /** * Password. */ public Builder password(String password) { this.password = password; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } /** * UserName. */ public Builder userName(String userName) { this.userName = userName; return this; } public UserParam build() { return new UserParam(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy