MeetingStartEventDetails Constructors
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
MeetingStartEventDetails() |
Initializes a new instance of the MeetingStartEventDetails class. |
MeetingStartEventDetails(String, Uri, String, String, DateTime) |
Initializes a new instance of the MeetingStartEventDetails class. |
Initializes a new instance of the MeetingStartEventDetails class.
public MeetingStartEventDetails ();
Public Sub New ()
Applies to
Microsoft.Bot.Builder 4.0
Product | Versions |
---|---|
Microsoft.Bot.Builder | 4.0 |
Initializes a new instance of the MeetingStartEventDetails class.
public MeetingStartEventDetails (string id, Uri joinUrl = default, string title = default, string meetingType = "Scheduled", DateTime startTime = default);
new Microsoft.Bot.Schema.Teams.MeetingStartEventDetails : string * Uri * string * string * DateTime -> Microsoft.Bot.Schema.Teams.MeetingStartEventDetails
Public Sub New (id As String, Optional joinUrl As Uri = Nothing, Optional title As String = Nothing, Optional meetingType As String = "Scheduled", Optional startTime As DateTime = Nothing)
Parameters
- id
- String
The meeting's Id, encoded as a BASE64 string.
- joinUrl
- Uri
The URL used to join the meeting.
- title
- String
The title of the meeting.
- meetingType
- String
The meeting's type.
- startTime
- DateTime
Timestamp for the meeting start, in UTC.
Applies to
Microsoft.Bot.Builder 4.0
Product | Versions |
---|---|
Microsoft.Bot.Builder | 4.0 |