Show / Hide Table of Contents

Class Presenter

Presenter contains information about which device is currently presenting as well as which device requested the presenter to be set.

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

Properties

ByDeviceId

The device resource name of the device which requested the current presenter to be set. This field can not be modified by clients.

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

CopresenterDeviceIds

The device resource names of other devices which can control the current presentation.

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

ETag

The ETag of the item.

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

PresenterDeviceId

The device resource name of the currently presenting device.

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

Implements

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