Class: Google::Apis::YoutubePartnerV1::UploaderListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::UploaderListResponse
 
- 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
- 
  
    
      #items  ⇒ Array<Google::Apis::YoutubePartnerV1::Uploader> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of uploader (youtubePartner#uploader) resources that match the request criteria. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API response. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UploaderListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UploaderListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UploaderListResponse
Returns a new instance of UploaderListResponse
| 3811 3812 3813 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3811 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::Uploader>
A list of uploader (youtubePartner#uploader) resources that match the request
criteria.
Corresponds to the JSON property items
| 3803 3804 3805 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3803 def items @items end | 
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
uploaderList.
Corresponds to the JSON property kind
| 3809 3810 3811 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3809 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3816 3817 3818 3819 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3816 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |