com.aliyun.dingtalkmail_1_0.models.CreateUserRequest 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.dingtalkmail_1_0.models;
import com.aliyun.tea.*;
public class CreateUserRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("email")
public String email;
/**
* This parameter is required.
*/
@NameInMap("employeeType")
public String employeeType;
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* password
*/
@NameInMap("password")
public String password;
public static CreateUserRequest build(java.util.Map map) throws Exception {
CreateUserRequest self = new CreateUserRequest();
return TeaModel.build(map, self);
}
public CreateUserRequest setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public CreateUserRequest setEmployeeType(String employeeType) {
this.employeeType = employeeType;
return this;
}
public String getEmployeeType() {
return this.employeeType;
}
public CreateUserRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateUserRequest setPassword(String password) {
this.password = password;
return this;
}
public String getPassword() {
return this.password;
}
}