Class: Google::Apis::DfareportingV3_1::DirectorySiteContactsListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_1::DirectorySiteContactsListResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_1/representations.rb 
Overview
Directory Site Contact List Response
Instance Attribute Summary collapse
- 
  
    
      #directory_site_contacts  ⇒ Array<Google::Apis::DfareportingV3_1::DirectorySiteContact> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Directory site contact collection Corresponds to the JSON property
directorySiteContacts. - 
  
    
      #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)  ⇒ DirectorySiteContactsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of DirectorySiteContactsListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DirectorySiteContactsListResponse
Returns a new instance of DirectorySiteContactsListResponse
      5327 5328 5329  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 5327 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#directory_site_contacts ⇒ Array<Google::Apis::DfareportingV3_1::DirectorySiteContact>
Directory site contact collection
Corresponds to the JSON property directorySiteContacts
      5314 5315 5316  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 5314 def directory_site_contacts @directory_site_contacts end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#directorySiteContactsListResponse".
Corresponds to the JSON property kind
      5320 5321 5322  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 5320 def kind @kind end  | 
  
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
      5325 5326 5327  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 5325 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5332 5333 5334 5335 5336  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 5332 def update!(**args) @directory_site_contacts = args[:directory_site_contacts] if args.key?(:directory_site_contacts) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |