Show / Hide Table of Contents

Class ConferenceData

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

Properties

ConferenceId

The ID of the conference. Can be used by developers to keep track of conferences, should not be displayed to users. Values for solution types: - "eventHangout": unset. - "eventNamedHangout": the name of the Hangout. - "hangoutsMeet": the 10-letter meeting code, for example "aaa-bbbb-ccc". - "addOn": defined by 3P conference provider. Optional.

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

ConferenceSolution

The conference solution, such as Hangouts or Hangouts Meet. Unset for a conference with a failed create request. Either conferenceSolution and at least one entryPoint, or createRequest is required.

Declaration
public virtual ConferenceSolution ConferenceSolution { get; set; }
Property Value
Type Description
ConferenceSolution

CreateRequest

A request to generate a new conference and attach it to the event. The data is generated asynchronously. To see whether the data is present check the status field. Either conferenceSolution and at least one entryPoint, or createRequest is required.

Declaration
public virtual CreateConferenceRequest CreateRequest { get; set; }
Property Value
Type Description
CreateConferenceRequest

EntryPoints

Information about individual conference entry points, such as URLs or phone numbers. All of them must belong to the same conference. Either conferenceSolution and at least one entryPoint, or createRequest is required.

Declaration
public virtual IList<EntryPoint> EntryPoints { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<EntryPoint>

ETag

The ETag of the item.

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

Notes

Additional notes (such as instructions from the domain administrator, legal notices) to display to the user. Can contain HTML. The maximum length is 2048 characters. Optional.

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

Parameters

Additional properties related to a conference. An example would be a solution-specific setting for enabling video streaming.

Declaration
public virtual ConferenceParameters Parameters { get; set; }
Property Value
Type Description
ConferenceParameters

Signature

The signature of the conference data. Generated on server side. Must be preserved while copying the conference data between events, otherwise the conference data will not be copied. Unset for a conference with a failed create request. Optional for a conference with a pending create request.

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

Implements

IDirectResponseSchema
Back to top