Class: Google::Apis::ChatV1::ListReactionsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListReactionsResponse

Returns a new instance of ListReactionsResponse.



3160
3161
3162
# File 'lib/google/apis/chat_v1/classes.rb', line 3160

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

Continuation token to retrieve the next page of results. It's empty for the last page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3153
3154
3155
# File 'lib/google/apis/chat_v1/classes.rb', line 3153

def next_page_token
  @next_page_token
end

#reactionsArray<Google::Apis::ChatV1::Reaction>

List of reactions in the requested (or first) page. Corresponds to the JSON property reactions

Returns:



3158
3159
3160
# File 'lib/google/apis/chat_v1/classes.rb', line 3158

def reactions
  @reactions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3165
3166
3167
3168
# File 'lib/google/apis/chat_v1/classes.rb', line 3165

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @reactions = args[:reactions] if args.key?(:reactions)
end