Class: Google::Apis::YoutubePartnerV1::StatusReport
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubePartnerV1::StatusReport
 
 
- 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 
Instance Attribute Summary collapse
- 
  
    
      #status_content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The content of the report message.
 - 
  
    
      #status_file_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Status file name.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StatusReport 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of StatusReport.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StatusReport
Returns a new instance of StatusReport
      3654 3655 3656  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3654 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#status_content ⇒ String
The content of the report message. Used only in Hybrid.
Corresponds to the JSON property statusContent
      3647 3648 3649  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3647 def status_content @status_content end  | 
  
#status_file_name ⇒ String
Status file name. Used only in Hybrid.
Corresponds to the JSON property statusFileName
      3652 3653 3654  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3652 def status_file_name @status_file_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3659 3660 3661 3662  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3659 def update!(**args) @status_content = args[:status_content] if args.key?(:status_content) @status_file_name = args[:status_file_name] if args.key?(:status_file_name) end  |