Class: Google::Apis::PeopleV1::ContactGroupMetadata

Inherits:
Object
  • Object
show all
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 metadata about a contact group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ContactGroupMetadata

Returns a new instance of ContactGroupMetadata.



378
379
380
# File 'generated/google/apis/people_v1/classes.rb', line 378

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#deletedBoolean Also known as: deleted?

Output only. 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

Returns:

  • (Boolean)


370
371
372
# File 'generated/google/apis/people_v1/classes.rb', line 370

def deleted
  @deleted
end

#update_timeString

Output only. The time the group was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


376
377
378
# File 'generated/google/apis/people_v1/classes.rb', line 376

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



383
384
385
386
# File 'generated/google/apis/people_v1/classes.rb', line 383

def update!(**args)
  @deleted = args[:deleted] if args.key?(:deleted)
  @update_time = args[:update_time] if args.key?(:update_time)
end