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

com.aliyun.dingtalkindustry_1_0.models.CustomizeContactCreateRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CustomizeContactCreateRequest extends TeaModel {
    @NameInMap("managerIdList")
    public java.util.List managerIdList;

    /**
     * 

This parameter is required.

* * example: *

A项目通讯录

*/ @NameInMap("name") public String name; @NameInMap("order") public Long order; public static CustomizeContactCreateRequest build(java.util.Map map) throws Exception { CustomizeContactCreateRequest self = new CustomizeContactCreateRequest(); return TeaModel.build(map, self); } public CustomizeContactCreateRequest setManagerIdList(java.util.List managerIdList) { this.managerIdList = managerIdList; return this; } public java.util.List getManagerIdList() { return this.managerIdList; } public CustomizeContactCreateRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public CustomizeContactCreateRequest setOrder(Long order) { this.order = order; return this; } public Long getOrder() { return this.order; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy