Class: Google::Apis::PeopleV1::ContactGroupMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::PeopleV1::ContactGroupMetadata
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/people_v1/classes.rb,
generated/google/apis/people_v1/representations.rb,
generated/google/apis/people_v1/representations.rb 
Overview
The read-only metadata about a contact group.
Instance Attribute Summary collapse
- 
  
    
      #deleted  ⇒ Boolean 
    
    
      (also: #deleted?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
True if the contact group resource has been deleted.
 - 
  
    
      #update_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the group was last updated.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ContactGroupMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ContactGroupMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContactGroupMetadata
Returns a new instance of ContactGroupMetadata
      368 369 370  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 368 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#deleted ⇒ Boolean Also known as: deleted?
True if the contact group resource has been deleted. Populated only for
ListContactGroups requests
that include a sync token.
Corresponds to the JSON property deleted
      360 361 362  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 360 def deleted @deleted end  | 
  
#update_time ⇒ String
The time the group was last updated.
Corresponds to the JSON property updateTime
      366 367 368  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 366 def update_time @update_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      373 374 375 376  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 373 def update!(**args) @deleted = args[:deleted] if args.key?(:deleted) @update_time = args[:update_time] if args.key?(:update_time) end  |