class Google::Apis::YoutubePartnerV1::ClaimEvent::Source

Data related to source of the event.

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 generated/google/apis/youtube_partner_v1/classes.rb, line 1018
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 1023
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