Class ConferenceData
Implements
Inherited Members
Namespace: Google.Apis.Calendar.v3.Data
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class ConferenceData : IDirectResponseSchema
Properties
ConferenceId
The ID of the conference. Can be used by developers to keep track of conferences, should not be displayed to users. The ID value is formed differently for each conference solution type: - eventHangout: ID is not set. (This conference type is deprecated.) - eventNamedHangout: ID is the name of the Hangout. (This conference type is deprecated.) - hangoutsMeet: ID is the 10-letter meeting code, for example aaa-bbbb-ccc.
- addOn: ID is defined by the third-party provider. Optional.
Declaration
[JsonProperty("conferenceId")]
public virtual string ConferenceId { get; set; }
Property Value
Type | Description |
---|---|
string |
ConferenceSolution
The conference solution, such as Google Meet. Unset for a conference with a failed create request. Either conferenceSolution and at least one entryPoint, or createRequest is required.
Declaration
[JsonProperty("conferenceSolution")]
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
[JsonProperty("createRequest")]
public virtual CreateConferenceRequest CreateRequest { get; set; }
Property Value
Type | Description |
---|---|
CreateConferenceRequest |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
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
[JsonProperty("entryPoints")]
public virtual IList<EntryPoint> EntryPoints { get; set; }
Property Value
Type | Description |
---|---|
IList<EntryPoint> |
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
[JsonProperty("notes")]
public virtual string Notes { get; set; }
Property Value
Type | Description |
---|---|
string |
Parameters
Additional properties related to a conference. An example would be a solution-specific setting for enabling video streaming.
Declaration
[JsonProperty("parameters")]
public virtual ConferenceParameters Parameters { get; set; }
Property Value
Type | Description |
---|---|
ConferenceParameters |
Signature
The signature of the conference data. Generated on server side. Unset for a conference with a failed create request. Optional for a conference with a pending create request.
Declaration
[JsonProperty("signature")]
public virtual string Signature { get; set; }
Property Value
Type | Description |
---|---|
string |