Class SlackListChannelsPageResponse
-
- All Implemented Interfaces:
public final class SlackListChannelsPageResponseThe response from a Slack provider request, containing a list of channels.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSlackListChannelsPageResponse.BuilderA builder for SlackListChannelsPageResponse.
-
Method Summary
Modifier and Type Method Description final Optional<String>nextCursor()Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. final List<SlackListChannelsResponse>slackChannels()List of Slack channels. final JsonField<String>_nextCursor()Returns the raw JSON value of nextCursor. final JsonField<List<SlackListChannelsResponse>>_slackChannels()Returns the raw JSON value of slackChannels. final Map<String, JsonValue>_additionalProperties()final SlackListChannelsPageResponse.BuildertoBuilder()final SlackListChannelsPageResponsevalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SlackListChannelsPageResponse.Builderbuilder()Returns a mutable builder for constructing an instance of SlackListChannelsPageResponse. -
-
Method Detail
-
nextCursor
final Optional<String> nextCursor()
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.
-
slackChannels
final List<SlackListChannelsResponse> slackChannels()
List of Slack channels.
-
_nextCursor
final JsonField<String> _nextCursor()
Returns the raw JSON value of nextCursor.
Unlike nextCursor, this method doesn't throw if the JSON field has an unexpected type.
-
_slackChannels
final JsonField<List<SlackListChannelsResponse>> _slackChannels()
Returns the raw JSON value of slackChannels.
Unlike slackChannels, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final SlackListChannelsPageResponse.Builder toBuilder()
-
validate
final SlackListChannelsPageResponse validate()
-
builder
final static SlackListChannelsPageResponse.Builder builder()
Returns a mutable builder for constructing an instance of SlackListChannelsPageResponse.
The following fields are required:
.nextCursor() .slackChannels()
-
-
-
-