Class ConferenceData
public class ConferenceData : IDirectResponseSchema
- Inheritance
-
ConferenceData
- Implements
-
IDirectResponseSchema
- Inherited Members
Constructors
ConferenceData()
public ConferenceData()
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.
public virtual string ConferenceId { get; set; }
Property Value
ConferenceSolution
The conference solution, such as Hangouts or Google Meet. Unset for a conference with a failed create request. Either conferenceSolution and at least one entryPoint, or createRequest is required.
public virtual ConferenceSolution ConferenceSolution { get; set; }
Property Value
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.
public virtual CreateConferenceRequest CreateRequest { get; set; }
Property Value
ETag
The ETag of the item.
public virtual string ETag { get; set; }
Property Value
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.
public virtual IList<EntryPoint> EntryPoints { get; set; }
Property Value
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.
public virtual string Notes { get; set; }
Property Value
Parameters
Additional properties related to a conference. An example would be a solution-specific setting for enabling video streaming.
public virtual ConferenceParameters Parameters { get; set; }
Property Value
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.
public virtual string Signature { get; set; }