Class: Google::Apis::YoutubePartnerV1::ClaimEvent::Source
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ClaimEvent::Source
- 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
-
#content_owner_id ⇒ String
Id of content owner that initiated the event.
-
#type ⇒ String
Type of the event source.
-
#user_email ⇒ String
Email of user who initiated the event.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Source
constructor
A new instance of Source.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Source
Returns a new instance of Source.
1018 1019 1020 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1018 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_owner_id ⇒ String
Id of content owner that initiated the event.
Corresponds to the JSON property contentOwnerId
1006 1007 1008 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1006 def content_owner_id @content_owner_id end |
#type ⇒ String
Type of the event source.
Corresponds to the JSON property type
1011 1012 1013 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1011 def type @type end |
#user_email ⇒ String
Email of user who initiated the event.
Corresponds to the JSON property userEmail
1016 1017 1018 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1016 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1023 1024 1025 1026 1027 |
# 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 |