Share via


MeetingDetails Constructors

Definition

Overloads

MeetingDetails()

Initializes a new instance of the MeetingDetails class.

MeetingDetails(String, String, Nullable<DateTime>, Nullable<DateTime>, Uri, String, String)

Initializes a new instance of the MeetingDetails class.

MeetingDetails()

Initializes a new instance of the MeetingDetails class.

public MeetingDetails ();
Public Sub New ()

Applies to

MeetingDetails(String, String, Nullable<DateTime>, Nullable<DateTime>, Uri, String, String)

Initializes a new instance of the MeetingDetails class.

public MeetingDetails (string id, string msGraphResourceId = default, DateTime? scheduledStartTime = default, DateTime? scheduledEndTime = default, Uri joinUrl = default, string title = default, string type = "Scheduled");
new Microsoft.Bot.Schema.Teams.MeetingDetails : string * string * Nullable<DateTime> * Nullable<DateTime> * Uri * string * string -> Microsoft.Bot.Schema.Teams.MeetingDetails
Public Sub New (id As String, Optional msGraphResourceId As String = Nothing, Optional scheduledStartTime As Nullable(Of DateTime) = Nothing, Optional scheduledEndTime As Nullable(Of DateTime) = Nothing, Optional joinUrl As Uri = Nothing, Optional title As String = Nothing, Optional type As String = "Scheduled")

Parameters

id
String

The meeting's Id, encoded as a BASE64 string.

msGraphResourceId
String

The MsGraphResourceId, used specifically for MS Graph API calls.

scheduledStartTime
Nullable<DateTime>

The meeting's scheduled start time, in UTC.

scheduledEndTime
Nullable<DateTime>

The meeting's scheduled end time, in UTC.

joinUrl
Uri

The URL used to join the meeting.

title
String

The title of the meeting.

type
String

The meeting's type.

Applies to