Show / Hide Table of Contents

Class UserInfo

Contains info regarding the updater of an Activity Feed item. Next Id: 8

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

Properties

DriveNotificationAvatarUrl

Avatar url of the user who triggered the Drive Notification email. This field will be populated if we can extract such information from the Drive Notification email. This should only be used to fetch user avatars when updater_to_show_email is not populated. This field is not set for non-Drive Notification items.

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

ETag

The ETag of the item.

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

UpdaterCountDisplayType

Describes how updater_count_to_show should be used.

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

UpdaterCountToShow

The number of updaters for clients to show depending on UpdaterCountDisplayType.

Declaration
[JsonProperty("updaterCountToShow")]
public virtual int? UpdaterCountToShow { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

UpdaterToShowEmail

The email of the updater for clients to show used for Gmail items. For Drive Notifications, this is the email of the user who triggered the Drive Notification email. This field will be populated if we can extract such information from the Drive Notification email. This is not the actual sender of the email, as the sender is always comments-noreply@docs.google.com.

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

UpdaterToShowGaiaId

The gaia id of the updater for clients to show used for Gmail items. If the updater is an external user, the email field below should be populated.

Declaration
[JsonProperty("updaterToShowGaiaId")]
public virtual long? UpdaterToShowGaiaId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

UpdaterToShowName

The display name of the updater for clients to show used for Gmail items. For non-Drive Notification items, this field will always be populated. If the display name cannot be found for the user, the fallback string will be the email address. For Drive Notification items, this is the name of the user who triggered the Drive notification email. This field will be populated if we can extract such information from the Drive Notification email. If the name cannot be extracted, then the email will be the fallback string, which is used as the display name text in the UI when needed. This is not the actual sender of the email, as the sender is always comments-noreply@docs.google.com.

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

UpdaterToShowUserId

The updater for clients to show used for Dynamite Chat items.

Declaration
[JsonProperty("updaterToShowUserId")]
public virtual UserId UpdaterToShowUserId { get; set; }
Property Value
Type Description
UserId

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top