MeetingDetails Constructors
Definition
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.
Overloads
| MeetingDetails() |
Initializes a new instance of the MeetingDetails class. |
| MeetingDetails(String, String, DateTime, 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, DateTime, 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 * DateTime * DateTime * Uri * string * string -> Microsoft.Bot.Schema.Teams.MeetingDetails
Public Sub New (id As String, Optional msGraphResourceId As String = Nothing, Optional scheduledStartTime As DateTime = Nothing, Optional scheduledEndTime As 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
- DateTime
The meeting's scheduled start time, in UTC.
- scheduledEndTime
- 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.