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

com.aliyun.dingtalkmail_1_0.models.CreateUserRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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: *

[email protected]

*/ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy