Class: Google::Apis::YoutubePartnerV1::WhitelistListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubePartnerV1::WhitelistListResponse
 
 
- 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::Whitelist> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of whitelist resources that match the request criteria.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the API response.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The token that can be used as the value of the pageToken parameter to retrieve the next page of results.
 - 
  
    
      #page_info  ⇒ Google::Apis::YoutubePartnerV1::PageInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The pageInfo object encapsulates paging information for the result set.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WhitelistListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of WhitelistListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WhitelistListResponse
Returns a new instance of WhitelistListResponse
      4258 4259 4260  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4258 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::Whitelist>
A list of whitelist resources that match the request criteria.
Corresponds to the JSON property items
      4239 4240 4241  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4239 def items @items end  | 
  
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
whitelistList.
Corresponds to the JSON property kind
      4245 4246 4247  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4245 def kind @kind end  | 
  
#next_page_token ⇒ String
The token that can be used as the value of the pageToken parameter to retrieve
the next page of results.
Corresponds to the JSON property nextPageToken
      4251 4252 4253  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4251 def next_page_token @next_page_token end  | 
  
#page_info ⇒ Google::Apis::YoutubePartnerV1::PageInfo
The pageInfo object encapsulates paging information for the result set.
Corresponds to the JSON property pageInfo
      4256 4257 4258  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4256 def page_info @page_info end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4263 4264 4265 4266 4267 4268  | 
    
      # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4263 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @page_info = args[:page_info] if args.key?(:page_info) end  |