Class: Google::Apis::YoutubePartnerV1::ValidateResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::ValidateResponse
 
- 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
- 
  
    
      #errors  ⇒ Array<Google::Apis::YoutubePartnerV1::ValidateError> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of errors and/or warnings. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API resource. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The validation status. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ValidateResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ValidateResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateResponse
Returns a new instance of ValidateResponse
| 3995 3996 3997 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3995 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#errors ⇒ Array<Google::Apis::YoutubePartnerV1::ValidateError>
The list of errors and/or warnings.
Corresponds to the JSON property errors
| 3982 3983 3984 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3982 def errors @errors end | 
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateResponse.
Corresponds to the JSON property kind
| 3988 3989 3990 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3988 def kind @kind end | 
#status ⇒ String
The validation status.
Corresponds to the JSON property status
| 3993 3994 3995 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3993 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4000 4001 4002 4003 4004 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4000 def update!(**args) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) end |