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

com.aliyun.dingtalkindustry_1_0.models.CustomizeContactCreateResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CustomizeContactCreateResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("content") public CustomizeContactCreateResponseBodyContent content; public static CustomizeContactCreateResponseBody build(java.util.Map map) throws Exception { CustomizeContactCreateResponseBody self = new CustomizeContactCreateResponseBody(); return TeaModel.build(map, self); } public CustomizeContactCreateResponseBody setContent(CustomizeContactCreateResponseBodyContent content) { this.content = content; return this; } public CustomizeContactCreateResponseBodyContent getContent() { return this.content; } public static class CustomizeContactCreateResponseBodyContent extends TeaModel { /** *

This parameter is required.

* * example: *

alt:vndk1nd0

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

This parameter is required.

* * example: *

A项目通讯录

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

This parameter is required.

* * example: *

1

*/ @NameInMap("order") public Long order; /** *

This parameter is required.

* * example: *

78933133

*/ @NameInMap("rootDeptId") public Long rootDeptId; public static CustomizeContactCreateResponseBodyContent build(java.util.Map map) throws Exception { CustomizeContactCreateResponseBodyContent self = new CustomizeContactCreateResponseBodyContent(); return TeaModel.build(map, self); } public CustomizeContactCreateResponseBodyContent setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public CustomizeContactCreateResponseBodyContent setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public CustomizeContactCreateResponseBodyContent setOrder(Long order) { this.order = order; return this; } public Long getOrder() { return this.order; } public CustomizeContactCreateResponseBodyContent setRootDeptId(Long rootDeptId) { this.rootDeptId = rootDeptId; return this; } public Long getRootDeptId() { return this.rootDeptId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy