Class ConversationsMembersRequest
java.lang.Object
com.slack.api.methods.request.conversations.ConversationsMembersRequest
- All Implemented Interfaces:
SlackApiRequest
public class ConversationsMembersRequest extends java.lang.Object implements SlackApiRequest
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classConversationsMembersRequest.ConversationsMembersRequestBuilder -
Method Summary
Modifier and Type Method Description static ConversationsMembersRequest.ConversationsMembersRequestBuilderbuilder()protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.lang.StringgetChannel()ID of the conversation to retrieve members forjava.lang.StringgetCursor()Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`.java.lang.IntegergetLimit()The maximum number of items to return.java.lang.StringgetToken()Authentication token.inthashCode()voidsetChannel(java.lang.String channel)ID of the conversation to retrieve members forvoidsetCursor(java.lang.String cursor)Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`.voidsetLimit(java.lang.Integer limit)The maximum number of items to return.voidsetToken(java.lang.String token)Authentication token.java.lang.StringtoString()
-
Method Details
-
builder
-
getToken
public java.lang.String getToken()Authentication token. Requires scope: `conversations:read`- Specified by:
getTokenin interfaceSlackApiRequest
-
getChannel
public java.lang.String getChannel()ID of the conversation to retrieve members for -
getCursor
public java.lang.String getCursor()Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. Default value fetches the first \"page\" of the collection. See [pagination](/docs/pagination) for more detail. -
getLimit
public java.lang.Integer getLimit()The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached. -
setToken
public void setToken(java.lang.String token)Authentication token. Requires scope: `conversations:read` -
setChannel
public void setChannel(java.lang.String channel)ID of the conversation to retrieve members for -
setCursor
public void setCursor(java.lang.String cursor)Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. Default value fetches the first \"page\" of the collection. See [pagination](/docs/pagination) for more detail. -
setLimit
public void setLimit(java.lang.Integer limit)The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached. -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other) -
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-