Show / Hide Table of Contents

Class PersonMetadata

The metadata about a person.

Inheritance
System.Object
PersonMetadata
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.PeopleService.v1.Data
Assembly: Google.Apis.PeopleService.v1.dll
Syntax
public class PersonMetadata : IDirectResponseSchema

Properties

Deleted

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

Declaration
[JsonProperty("deleted")]
public virtual bool? Deleted { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LinkedPeopleResourceNames

Output only. Resource names of people linked to this resource.

Declaration
[JsonProperty("linkedPeopleResourceNames")]
public virtual IList<string> LinkedPeopleResourceNames { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ObjectType

Output only. DEPRECATED (Please use person.metadata.sources.profileMetadata.objectType instead)

The type of the person object.

Declaration
[JsonProperty("objectType")]
public virtual string ObjectType { get; set; }
Property Value
Type Description
System.String

PreviousResourceNames

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.

Declaration
[JsonProperty("previousResourceNames")]
public virtual IList<string> PreviousResourceNames { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Sources

The sources of data for the person.

Declaration
[JsonProperty("sources")]
public virtual IList<Source> Sources { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Source>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top