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

com.aliyun.dingtalkdoc_2_0.models.UpdateTeamRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class UpdateTeamRequest extends TeaModel {
    /**
     * example:
     * 

这是更新后的简介

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

更新后的名称

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

This parameter is required.

* * example: *

YEp3JcM******UIbhwiE

*/ @NameInMap("operatorId") public String operatorId; public static UpdateTeamRequest build(java.util.Map map) throws Exception { UpdateTeamRequest self = new UpdateTeamRequest(); return TeaModel.build(map, self); } public UpdateTeamRequest setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public UpdateTeamRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public UpdateTeamRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy