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

com.aliyun.dingtalkchengfeng_1_0.models.OpenUserDTO Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class OpenUserDTO extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

1

*/ @NameInMap("id") public String id; /** *

This parameter is required.

* * example: *

王五

*/ @NameInMap("name") public String name; /** *

This parameter is required.

* * example: *

015310183065939140

*/ @NameInMap("userId") public String userId; public static OpenUserDTO build(java.util.Map map) throws Exception { OpenUserDTO self = new OpenUserDTO(); return TeaModel.build(map, self); } public OpenUserDTO setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public OpenUserDTO setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public OpenUserDTO setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy