Class: Google::Apis::YoutubePartnerV1::ValidateStatusResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::ValidateStatusResponse
 
- 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. 
- 
  
    
      #is_metadata_only  ⇒ Boolean 
    
    
      (also: #is_metadata_only?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If this is a metadata-only package. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API resource. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The validation status. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ValidateStatusResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ValidateStatusResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateStatusResponse
Returns a new instance of ValidateStatusResponse
| 4067 4068 4069 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4067 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
| 4048 4049 4050 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4048 def errors @errors end | 
#is_metadata_only ⇒ Boolean Also known as: is_metadata_only?
If this is a metadata-only package.
Corresponds to the JSON property isMetadataOnly
| 4053 4054 4055 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4053 def @is_metadata_only end | 
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateStatusResponse.
Corresponds to the JSON property kind
| 4060 4061 4062 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4060 def kind @kind end | 
#status ⇒ String
The validation status.
Corresponds to the JSON property status
| 4065 4066 4067 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4065 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4072 4073 4074 4075 4076 4077 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4072 def update!(**args) @errors = args[:errors] if args.key?(:errors) @is_metadata_only = args[:is_metadata_only] if args.key?(:is_metadata_only) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) end |