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

com.aliyun.dingtalkagoal_1_0.models.OpenAgoalTeamDTO 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.dingtalkagoal_1_0.models;

import com.aliyun.tea.*;

public class OpenAgoalTeamDTO extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

8535683xx

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

This parameter is required.

* * example: *

测试部门

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

This parameter is required.

* * example: *

6444f5e9a4261c6e699dxxxx

*/ @NameInMap("teamId") public String teamId; public static OpenAgoalTeamDTO build(java.util.Map map) throws Exception { OpenAgoalTeamDTO self = new OpenAgoalTeamDTO(); return TeaModel.build(map, self); } public OpenAgoalTeamDTO setDeptId(String deptId) { this.deptId = deptId; return this; } public String getDeptId() { return this.deptId; } public OpenAgoalTeamDTO setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public OpenAgoalTeamDTO setTeamId(String teamId) { this.teamId = teamId; return this; } public String getTeamId() { return this.teamId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy