Class: Google::Apis::MirrorV1::ListContactsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MirrorV1::ListContactsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/mirror_v1/classes.rb,
generated/google/apis/mirror_v1/representations.rb,
generated/google/apis/mirror_v1/representations.rb 
Overview
A list of Contacts representing contacts. This is the response from the server to GET requests on the contacts collection.
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::MirrorV1::Contact> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contact list.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of resource.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListContactsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListContactsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListContactsResponse
Returns a new instance of ListContactsResponse
      294 295 296  | 
    
      # File 'generated/google/apis/mirror_v1/classes.rb', line 294 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#items ⇒ Array<Google::Apis::MirrorV1::Contact>
Contact list.
Corresponds to the JSON property items
      287 288 289  | 
    
      # File 'generated/google/apis/mirror_v1/classes.rb', line 287 def items @items end  | 
  
#kind ⇒ String
The type of resource. This is always mirror#contacts.
Corresponds to the JSON property kind
      292 293 294  | 
    
      # File 'generated/google/apis/mirror_v1/classes.rb', line 292 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      299 300 301 302  | 
    
      # File 'generated/google/apis/mirror_v1/classes.rb', line 299 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end  |