Show / Hide Table of Contents

Class Person

Object to represent a person.

Inheritance
System.Object
Person
Implements
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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class Person : IDirectResponseSchema

Properties

EmailAddresses

The person's email addresses

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

ETag

The ETag of the item.

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

Name

The resource name of the person to provide information about. See People.get from Google People API.

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

ObfuscatedId

Obfuscated ID of a person.

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

PersonNames

The person's name

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

Photos

A person's read-only photo. A picture shown next to the person's name to help others recognize the person in search results.

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

Implements

IDirectResponseSchema
Back to top