Show / Hide Table of Contents

Class UserAbout

JSON template for About (notes) of a user in Directory API.

Inheritance
System.Object
UserAbout
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.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class UserAbout : IDirectResponseSchema

Properties

ContentType

About entry can have a type which indicates the content type. It can either be plain or html. By default, notes contents are assumed to contain plain text.

Declaration
[JsonProperty("contentType")]
public virtual string ContentType { 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

Value

Actual value of notes.

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

Implements

IDirectResponseSchema
Back to top