Show / Hide Table of Contents

Class PrivateMessageInfo

Private message information specific to a given user. DEPRECATED: Use the privateMessageViewer field in CreateMessageInfo instead.

Inheritance
System.Object
PrivateMessageInfo
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 PrivateMessageInfo : IDirectResponseSchema

Properties

Annotations

Annotations private to {@code userId}.

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

Attachments

Attachments private to {@code userId}.

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

ContextualAddOnMarkup

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

ETag

The ETag of the item.

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

GsuiteIntegrationMetadata

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

Text

Text private to {@code user_id}. Initial restriction: Only one of public text or private text is rendered on the client. So if public text is set, private text is ignored.

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

UserId

Required. The elements in this struct are visible to this user.

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

Implements

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