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

com.aliyun.dingtalkchengfeng_1_0.models.GetEmployeeInfoByWorkNoResponseBody 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.dingtalkchengfeng_1_0.models;

import com.aliyun.tea.*;

public class GetEmployeeInfoByWorkNoResponseBody extends TeaModel {
    @NameInMap("content")
    public GetEmployeeInfoByWorkNoResponseBodyContent content;

    /**
     * 

This parameter is required.

* * example: *

true

*/ @NameInMap("success") public Boolean success; public static GetEmployeeInfoByWorkNoResponseBody build(java.util.Map map) throws Exception { GetEmployeeInfoByWorkNoResponseBody self = new GetEmployeeInfoByWorkNoResponseBody(); return TeaModel.build(map, self); } public GetEmployeeInfoByWorkNoResponseBody setContent(GetEmployeeInfoByWorkNoResponseBodyContent content) { this.content = content; return this; } public GetEmployeeInfoByWorkNoResponseBodyContent getContent() { return this.content; } public GetEmployeeInfoByWorkNoResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class GetEmployeeInfoByWorkNoResponseBodyContent extends TeaModel { /** * example: *

姜小白

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

305932

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy