Show / Hide Table of Contents

Class Channel

Inheritance
System.Object
Channel
Implements
IDirectResponseSchema
Namespace: Google.Apis.Calendar.v3.Data
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class Channel : object, IDirectResponseSchema

Properties

Address

The address where notifications are delivered for this channel.

Declaration
public virtual string Address { 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

Expiration

Date and time of notification channel expiration, expressed as a Unix timestamp, in milliseconds. Optional.

Declaration
public virtual Nullable<long> Expiration { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Id

A UUID or similar unique string that identifies this channel.

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

Kind

Identifies this as a notification channel used to watch for changes to a resource, which is "api#channel".

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

Params__

Additional parameters controlling delivery channel behavior. Optional.

Declaration
public virtual IDictionary<string, string> Params__ { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

Payload

A Boolean value to indicate whether payload is wanted. Optional.

Declaration
public virtual Nullable<bool> Payload { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ResourceId

An opaque ID that identifies the resource being watched on this channel. Stable across different API versions.

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

ResourceUri

A version-specific identifier for the watched resource.

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

Token

An arbitrary string delivered to the target address with each notification delivered over this channel. Optional.

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

Type

The type of delivery mechanism used for this channel.

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

Implements

IDirectResponseSchema
Back to top