class Google::Apis::YoutubePartnerV1::Source
Attributes
content_owner_id[RW]
Id of content owner that initiated the event. Corresponds to the JSON property `contentOwnerId` @return [String]
type[RW]
Type of the event source. Corresponds to the JSON property `type` @return [String]
user_email[RW]
Email of user who initiated the event. Corresponds to the JSON property `userEmail` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_partner_v1/classes.rb, line 3803 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_partner_v1/classes.rb, line 3808 def update!(**args) @content_owner_id = args[:content_owner_id] if args.key?(:content_owner_id) @type = args[:type] if args.key?(:type) @user_email = args[:user_email] if args.key?(:user_email) end