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

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

There is a newer version: 2.1.30
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 CustomizeContactUpdateRequest extends TeaModel {
    // 自定义通讯录Code
    @NameInMap("code")
    public String code;

    // 通讯录管理员UserId
    @NameInMap("managerIdList")
    public java.util.List managerIdList;

    // 自定义通讯录名称
    @NameInMap("name")
    public String name;

    // 在自定义通讯录列表中的排序
    @NameInMap("order")
    public Long order;

    public static CustomizeContactUpdateRequest build(java.util.Map map) throws Exception {
        CustomizeContactUpdateRequest self = new CustomizeContactUpdateRequest();
        return TeaModel.build(map, self);
    }

    public CustomizeContactUpdateRequest setCode(String code) {
        this.code = code;
        return this;
    }
    public String getCode() {
        return this.code;
    }

    public CustomizeContactUpdateRequest setManagerIdList(java.util.List managerIdList) {
        this.managerIdList = managerIdList;
        return this;
    }
    public java.util.List getManagerIdList() {
        return this.managerIdList;
    }

    public CustomizeContactUpdateRequest setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public CustomizeContactUpdateRequest setOrder(Long order) {
        this.order = order;
        return this;
    }
    public Long getOrder() {
        return this.order;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy