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
      1089 1090 1091  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1089 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
      1077 1078 1079  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1077 def content_owner_id @content_owner_id end  | 
  
#type ⇒ String
Type of the event source.
Corresponds to the JSON property type
      1082 1083 1084  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1082 def type @type end  | 
  
#user_email ⇒ String
Email of user who initiated the event.
Corresponds to the JSON property userEmail
      1087 1088 1089  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1087 def user_email @user_email end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1094 1095 1096 1097 1098  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1094 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  |