TaskManagementTask(String, String, String, String, Boolean) Constructor
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.
Initializes a new instance of the TaskManagementTask class.
public TaskManagementTask(string id, string title, string? reminder = default, string? due = default, bool isCompleted = false);
new Microsoft.SemanticKernel.Plugins.MsGraph.Models.TaskManagementTask : string * string * string * string * bool -> Microsoft.SemanticKernel.Plugins.MsGraph.Models.TaskManagementTask
Public Sub New (id As String, title As String, Optional reminder As String = Nothing, Optional due As String = Nothing, Optional isCompleted As Boolean = false)
Parameters
- id
- String
ID of the task.
- title
- String
Title of the task.
- reminder
- String
Reminder date/time for the task.
- due
- String
Task's due date/time.
- isCompleted
- Boolean
True if the task is completed, otherwise false.