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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/people_v1/classes.rb,
lib/google/apis/people_v1/representations.rb,
lib/google/apis/people_v1/representations.rb

Overview

The metadata about a person.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PersonMetadata

Returns a new instance of PersonMetadata.



2162
2163
2164
# File 'lib/google/apis/people_v1/classes.rb', line 2162

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

Instance Attribute Details

#deletedBoolean Also known as: deleted?

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


2134
2135
2136
# File 'lib/google/apis/people_v1/classes.rb', line 2134

def deleted
  @deleted
end

#linked_people_resource_namesArray<String>

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

Returns:

  • (Array<String>)


2140
2141
2142
# File 'lib/google/apis/people_v1/classes.rb', line 2140

def linked_people_resource_names
  @linked_people_resource_names
end

#object_typeString

Output only. DEPRECATED (Please use person.metadata.sources. profileMetadata.objectType instead) The type of the person object. Corresponds to the JSON property objectType

Returns:

  • (String)


2146
2147
2148
# File 'lib/google/apis/people_v1/classes.rb', line 2146

def object_type
  @object_type
end

#previous_resource_namesArray<String>

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


2155
2156
2157
# File 'lib/google/apis/people_v1/classes.rb', line 2155

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:



2160
2161
2162
# File 'lib/google/apis/people_v1/classes.rb', line 2160

def sources
  @sources
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2167
2168
2169
2170
2171
2172
2173
# File 'lib/google/apis/people_v1/classes.rb', line 2167

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