Class: Google::Apis::YoutubePartnerV1::ValidateAsyncResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubePartnerV1::ValidateAsyncResponse
 
 
- 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
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the API resource.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The validation status.
 - 
  
    
      #validation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The validation ID.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ValidateAsyncResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ValidateAsyncResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateAsyncResponse
Returns a new instance of ValidateAsyncResponse
      3874 3875 3876  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3874 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
The type of the API resource. For this operation, the value is youtubePartner#
validateAsyncResponse.
Corresponds to the JSON property kind
      3862 3863 3864  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3862 def kind @kind end  | 
  
#status ⇒ String
The validation status.
Corresponds to the JSON property status
      3867 3868 3869  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3867 def status @status end  | 
  
#validation_id ⇒ String
The validation ID.
Corresponds to the JSON property validationId
      3872 3873 3874  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3872 def validation_id @validation_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3879 3880 3881 3882 3883  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3879 def update!(**args) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) @validation_id = args[:validation_id] if args.key?(:validation_id) end  |