Class: Google::Apis::DfareportingV2_8::DirectorySitesListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV2_8::DirectorySitesListResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb 
Overview
Directory Site List Response
Instance Attribute Summary collapse
- 
  
    
      #directory_sites  ⇒ Array<Google::Apis::DfareportingV2_8::DirectorySite> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Directory site collection.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Pagination token to be used for the next list operation.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DirectorySitesListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of DirectorySitesListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DirectorySitesListResponse
Returns a new instance of DirectorySitesListResponse
      5281 5282 5283  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5281 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#directory_sites ⇒ Array<Google::Apis::DfareportingV2_8::DirectorySite>
Directory site collection.
Corresponds to the JSON property directorySites
      5268 5269 5270  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5268 def directory_sites @directory_sites end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#directorySitesListResponse".
Corresponds to the JSON property kind
      5274 5275 5276  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5274 def kind @kind end  | 
  
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
      5279 5280 5281  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5279 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5286 5287 5288 5289 5290  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 5286 def update!(**args) @directory_sites = args[:directory_sites] if args.key?(:directory_sites) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |