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

com.aliyun.dingtalkokr_1_0.models.OpenUserDTO 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.dingtalkokr_1_0.models;

import com.aliyun.tea.*;

public class OpenUserDTO extends TeaModel {
    /**
     * example:
     * 

0342464558835299

*/ @NameInMap("dingUserId") public String dingUserId; /** * example: *

小明

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

64cd2e9bb80efb17244c650d

*/ @NameInMap("userUid") public String userUid; /** * example: *

2639402752-1812711657

*/ @NameInMap("workNo") public String workNo; public static OpenUserDTO build(java.util.Map map) throws Exception { OpenUserDTO self = new OpenUserDTO(); return TeaModel.build(map, self); } public OpenUserDTO setDingUserId(String dingUserId) { this.dingUserId = dingUserId; return this; } public String getDingUserId() { return this.dingUserId; } public OpenUserDTO setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public OpenUserDTO setUserUid(String userUid) { this.userUid = userUid; return this; } public String getUserUid() { return this.userUid; } public OpenUserDTO setWorkNo(String workNo) { this.workNo = workNo; return this; } public String getWorkNo() { return this.workNo; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy