class Google::Apis::PeopleV1::PersonMetadata
Metadata about a person.
Attributes
True if the person resource has been deleted. Populated only for [`connections. list`](/people/api/rest/v1/people.connections/list) requests that include a sync token. Corresponds to the JSON property `deleted` @return [Boolean]
True if the person resource has been deleted. Populated only for [`connections. list`](/people/api/rest/v1/people.connections/list) requests that include a sync token. Corresponds to the JSON property `deleted` @return [Boolean]
The type of the person object. Corresponds to the JSON property `objectType` @return [String]
Any former resource names this person has had. Populated only for [` connections.list`](/people/api/rest/v1/people.connections/list) requests that include a sync token. The resource name may change when adding or removing fields that link a contact and profile such as a verified email, verified phone number, or profile URL. Corresponds to the JSON property `previousResourceNames` @return [Array<String>]
The sources of data for the person. Corresponds to the JSON property `sources` @return [Array<Google::Apis::PeopleV1::Source>]
Public Class Methods
# File generated/google/apis/people_v1/classes.rb, line 249 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/people_v1/classes.rb, line 254 def update!(**args) @sources = args[:sources] if args.key?(:sources) @previous_resource_names = args[:previous_resource_names] if args.key?(:previous_resource_names) @deleted = args[:deleted] if args.key?(:deleted) @object_type = args[:object_type] if args.key?(:object_type) end