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

com.aliyun.dingtalkconference_1_0.models.CohostsRequest 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.dingtalkconference_1_0.models;

import com.aliyun.tea.*;

public class CohostsRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

add

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

This parameter is required.

*/ @NameInMap("userList") public java.util.List userList; public static CohostsRequest build(java.util.Map map) throws Exception { CohostsRequest self = new CohostsRequest(); return TeaModel.build(map, self); } public CohostsRequest setAction(String action) { this.action = action; return this; } public String getAction() { return this.action; } public CohostsRequest setUserList(java.util.List userList) { this.userList = userList; return this; } public java.util.List getUserList() { return this.userList; } public static class CohostsRequestUserList extends TeaModel { /** *

This parameter is required.

* * example: *

qzR1iSMDvzR9iP7Pxxxxxxxxxxxxxxx

*/ @NameInMap("unionId") public String unionId; public static CohostsRequestUserList build(java.util.Map map) throws Exception { CohostsRequestUserList self = new CohostsRequestUserList(); return TeaModel.build(map, self); } public CohostsRequestUserList setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy