com.aliyun.dingtalkim_1_0.models.QueryMembersOfGroupRoleRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class QueryMembersOfGroupRoleRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* cidXXXXXXX
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*
* example:
* roleXXXXX
*/
@NameInMap("openRoleId")
public String openRoleId;
/**
* example:
* 1621502140000
*/
@NameInMap("timestamp")
public Long timestamp;
public static QueryMembersOfGroupRoleRequest build(java.util.Map map) throws Exception {
QueryMembersOfGroupRoleRequest self = new QueryMembersOfGroupRoleRequest();
return TeaModel.build(map, self);
}
public QueryMembersOfGroupRoleRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public QueryMembersOfGroupRoleRequest setOpenRoleId(String openRoleId) {
this.openRoleId = openRoleId;
return this;
}
public String getOpenRoleId() {
return this.openRoleId;
}
public QueryMembersOfGroupRoleRequest setTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
public Long getTimestamp() {
return this.timestamp;
}
}