Share via


O365ConnectorCardDateInput Constructors

Definition

Overloads

O365ConnectorCardDateInput()

Initializes a new instance of the O365ConnectorCardDateInput class.

O365ConnectorCardDateInput(String, String, Nullable<Boolean>, String, String, Nullable<Boolean>)

Initializes a new instance of the O365ConnectorCardDateInput class.

O365ConnectorCardDateInput()

Initializes a new instance of the O365ConnectorCardDateInput class.

public O365ConnectorCardDateInput ();
Public Sub New ()

Applies to

O365ConnectorCardDateInput(String, String, Nullable<Boolean>, String, String, Nullable<Boolean>)

Initializes a new instance of the O365ConnectorCardDateInput class.

public O365ConnectorCardDateInput (string type = default, string id = default, bool? isRequired = default, string title = default, string value = default, bool? includeTime = default);
new Microsoft.Bot.Schema.Teams.O365ConnectorCardDateInput : string * string * Nullable<bool> * string * string * Nullable<bool> -> Microsoft.Bot.Schema.Teams.O365ConnectorCardDateInput
Public Sub New (Optional type As String = Nothing, Optional id As String = Nothing, Optional isRequired As Nullable(Of Boolean) = Nothing, Optional title As String = Nothing, Optional value As String = Nothing, Optional includeTime As Nullable(Of Boolean) = Nothing)

Parameters

type
String

Input type name. Possible values include: 'textInput', 'dateInput', 'multichoiceInput'.

id
String

Input Id. It must be unique per entire O365 connector card.

isRequired
Nullable<Boolean>

Define if this input is a required field. Default value is false.

title
String

Input title that will be shown as the placeholder.

value
String

Default value for this input field.

includeTime
Nullable<Boolean>

Include time input field. Default value is false (date only).

Applies to