Class: Google::Apis::YoutubePartnerV1::ClaimEvent::Source

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

Overview

Data related to source of the event.

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) ⇒ Source

Returns a new instance of Source.



1056
1057
1058
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1056

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

Instance Attribute Details

#content_owner_idString

Id of content owner that initiated the event. Corresponds to the JSON property contentOwnerId

Returns:

  • (String)


1044
1045
1046
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1044

def content_owner_id
  @content_owner_id
end

#typeString

Type of the event source. Corresponds to the JSON property type

Returns:

  • (String)


1049
1050
1051
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1049

def type
  @type
end

#user_emailString

Email of user who initiated the event. Corresponds to the JSON property userEmail

Returns:

  • (String)


1054
1055
1056
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1054

def user_email
  @user_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1061
1062
1063
1064
1065
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1061

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