Class: Google::Apis::PeopleV1::PersonMetadata

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 read-only metadata about a person.

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) ⇒ PersonMetadata

Returns a new instance of PersonMetadata



1770
1771
1772
# File 'generated/google/apis/people_v1/classes.rb', line 1770

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

Instance Attribute Details

#deletedBoolean Also known as: deleted?

True if the person resource has been deleted. Populated only for connections.list requests that include a sync token. Corresponds to the JSON property deleted

Returns:

  • (Boolean)


1761
1762
1763
# File 'generated/google/apis/people_v1/classes.rb', line 1761

def deleted
  @deleted
end

#linked_people_resource_namesArray<String>

Resource names of people linked to this resource. Corresponds to the JSON property linkedPeopleResourceNames

Returns:

  • (Array<String>)


1739
1740
1741
# File 'generated/google/apis/people_v1/classes.rb', line 1739

def linked_people_resource_names
  @linked_people_resource_names
end

#object_typeString

DEPRECATED(Please read person.metadata.sources.profile_metadata instead). The type of the person object. Corresponds to the JSON property objectType

Returns:

  • (String)


1768
1769
1770
# File 'generated/google/apis/people_v1/classes.rb', line 1768

def object_type
  @object_type
end

#previous_resource_namesArray<String>

Any former resource names this person has had. Populated only for 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

Returns:

  • (Array<String>)


1749
1750
1751
# File 'generated/google/apis/people_v1/classes.rb', line 1749

def previous_resource_names
  @previous_resource_names
end

#sourcesArray<Google::Apis::PeopleV1::Source>

The sources of data for the person. Corresponds to the JSON property sources

Returns:



1754
1755
1756
# File 'generated/google/apis/people_v1/classes.rb', line 1754

def sources
  @sources
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1775
1776
1777
1778
1779
1780
1781
# File 'generated/google/apis/people_v1/classes.rb', line 1775

def update!(**args)
  @linked_people_resource_names = args[:linked_people_resource_names] if args.key?(:linked_people_resource_names)
  @previous_resource_names = args[:previous_resource_names] if args.key?(:previous_resource_names)
  @sources = args[:sources] if args.key?(:sources)
  @deleted = args[:deleted] if args.key?(:deleted)
  @object_type = args[:object_type] if args.key?(:object_type)
end