Class: Google::Apis::YoutubeV3::LiveChatMessageListResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LiveChatMessageListResponse

Returns a new instance of LiveChatMessageListResponse.



4299
4300
4301
# File 'generated/google/apis/youtube_v3/classes.rb', line 4299

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


4248
4249
4250
# File 'generated/google/apis/youtube_v3/classes.rb', line 4248

def etag
  @etag
end

#event_idString

Serialized EventId of the request which produced this response. Corresponds to the JSON property eventId

Returns:

  • (String)


4253
4254
4255
# File 'generated/google/apis/youtube_v3/classes.rb', line 4253

def event_id
  @event_id
end

#itemsArray<Google::Apis::YoutubeV3::LiveChatMessage>

A list of live chat messages. Corresponds to the JSON property items



4258
4259
4260
# File 'generated/google/apis/youtube_v3/classes.rb', line 4258

def items
  @items
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# liveChatMessageListResponse". Corresponds to the JSON property kind

Returns:

  • (String)


4264
4265
4266
# File 'generated/google/apis/youtube_v3/classes.rb', line 4264

def kind
  @kind
end

#next_page_tokenString

The token that can be used as the value of the pageToken parameter to retrieve the next page in the result set. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4270
4271
4272
# File 'generated/google/apis/youtube_v3/classes.rb', line 4270

def next_page_token
  @next_page_token
end

#offline_atDateTime

The date and time when the underlying stream went offline. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format. Corresponds to the JSON property offlineAt

Returns:

  • (DateTime)


4276
4277
4278
# File 'generated/google/apis/youtube_v3/classes.rb', line 4276

def offline_at
  @offline_at
end

#page_infoGoogle::Apis::YoutubeV3::PageInfo

Paging details for lists of resources, including total number of items available and number of resources returned in a single page. Corresponds to the JSON property pageInfo



4282
4283
4284
# File 'generated/google/apis/youtube_v3/classes.rb', line 4282

def page_info
  @page_info
end

#polling_interval_millisFixnum

The amount of time the client should wait before polling again. Corresponds to the JSON property pollingIntervalMillis

Returns:

  • (Fixnum)


4287
4288
4289
# File 'generated/google/apis/youtube_v3/classes.rb', line 4287

def polling_interval_millis
  @polling_interval_millis
end

#token_paginationGoogle::Apis::YoutubeV3::TokenPagination

Stub token pagination template to suppress results. Corresponds to the JSON property tokenPagination



4292
4293
4294
# File 'generated/google/apis/youtube_v3/classes.rb', line 4292

def token_pagination
  @token_pagination
end

#visitor_idString

The visitorId identifies the visitor. Corresponds to the JSON property visitorId

Returns:

  • (String)


4297
4298
4299
# File 'generated/google/apis/youtube_v3/classes.rb', line 4297

def visitor_id
  @visitor_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
# File 'generated/google/apis/youtube_v3/classes.rb', line 4304

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @event_id = args[:event_id] if args.key?(:event_id)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @offline_at = args[:offline_at] if args.key?(:offline_at)
  @page_info = args[:page_info] if args.key?(:page_info)
  @polling_interval_millis = args[:polling_interval_millis] if args.key?(:polling_interval_millis)
  @token_pagination = args[:token_pagination] if args.key?(:token_pagination)
  @visitor_id = args[:visitor_id] if args.key?(:visitor_id)
end