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

com.aliyun.dingtalkproject_1_0.models.GetTbUserIdByStaffIdResponseBody 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.dingtalkproject_1_0.models;

import com.aliyun.tea.*;

public class GetTbUserIdByStaffIdResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("result") public GetTbUserIdByStaffIdResponseBodyResult result; public static GetTbUserIdByStaffIdResponseBody build(java.util.Map map) throws Exception { GetTbUserIdByStaffIdResponseBody self = new GetTbUserIdByStaffIdResponseBody(); return TeaModel.build(map, self); } public GetTbUserIdByStaffIdResponseBody setResult(GetTbUserIdByStaffIdResponseBodyResult result) { this.result = result; return this; } public GetTbUserIdByStaffIdResponseBodyResult getResult() { return this.result; } public static class GetTbUserIdByStaffIdResponseBodyResult extends TeaModel { /** *

This parameter is required.

* * example: *

601fdeb17f8681c9xxxx

*/ @NameInMap("tbUserId") public String tbUserId; public static GetTbUserIdByStaffIdResponseBodyResult build(java.util.Map map) throws Exception { GetTbUserIdByStaffIdResponseBodyResult self = new GetTbUserIdByStaffIdResponseBodyResult(); return TeaModel.build(map, self); } public GetTbUserIdByStaffIdResponseBodyResult setTbUserId(String tbUserId) { this.tbUserId = tbUserId; return this; } public String getTbUserId() { return this.tbUserId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy