class Google::Apis::YoutubePartnerV1::LiveCuepoint

Attributes

broadcast_id[RW]

The ID that YouTube assigns to uniquely identify the broadcast into which the cuepoint is being inserted. Corresponds to the JSON property `broadcastId` @return [String]

id[RW]

A value that YouTube assigns to uniquely identify the cuepoint. Corresponds to the JSON property `id` @return [String]

kind[RW]

The type of the API resource. For liveCuepoint resources, the value is youtubePartner#liveCuepoint. Corresponds to the JSON property `kind` @return [String]

settings[RW]

The settings object defines the cuepoint's settings. Corresponds to the JSON property `settings` @return [Google::Apis::YoutubePartnerV1::CuepointSettings]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/youtube_partner_v1/classes.rb, line 1799
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_partner_v1/classes.rb, line 1804
def update!(**args)
  @broadcast_id = args[:broadcast_id] if args.key?(:broadcast_id)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @settings = args[:settings] if args.key?(:settings)
end