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

com.aliyun.dingtalklive_1_0.models.AddShareCidListRequest 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.dingtalklive_1_0.models;

import com.aliyun.tea.*;

public class AddShareCidListRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

2

*/ @NameInMap("groupIdType") public Long groupIdType; /** *

This parameter is required.

*/ @NameInMap("groupIds") public java.util.List groupIds; /** *

This parameter is required.

* * example: *

214675

*/ @NameInMap("userId") public String userId; public static AddShareCidListRequest build(java.util.Map map) throws Exception { AddShareCidListRequest self = new AddShareCidListRequest(); return TeaModel.build(map, self); } public AddShareCidListRequest setGroupIdType(Long groupIdType) { this.groupIdType = groupIdType; return this; } public Long getGroupIdType() { return this.groupIdType; } public AddShareCidListRequest setGroupIds(java.util.List groupIds) { this.groupIds = groupIds; return this; } public java.util.List getGroupIds() { return this.groupIds; } public AddShareCidListRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy