class Google::Apis::PeopleV1::ContactGroupMetadata
The metadata about a contact group.
Attributes
deleted[RW]
Output only. True if the contact group resource has been deleted. Populated only for [`ListContactGroups`](/people/api/rest/v1/contactgroups/list) requests that include a sync token. Corresponds to the JSON property `deleted` @return [Boolean]
deleted?[RW]
Output only. True if the contact group resource has been deleted. Populated only for [`ListContactGroups`](/people/api/rest/v1/contactgroups/list) requests that include a sync token. Corresponds to the JSON property `deleted` @return [Boolean]
update_time[RW]
Output only. The time the group was last updated. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/people_v1/classes.rb, line 608 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/people_v1/classes.rb, line 613 def update!(**args) @deleted = args[:deleted] if args.key?(:deleted) @update_time = args[:update_time] if args.key?(:update_time) end