O365ConnectorCardInputBase 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
O365ConnectorCardInputBase() |
Initializes a new instance of the O365ConnectorCardInputBase class. |
O365ConnectorCardInputBase(String, String, Nullable<Boolean>, String, String) |
Initializes a new instance of the O365ConnectorCardInputBase class. |
O365ConnectorCardInputBase()
Initializes a new instance of the O365ConnectorCardInputBase class.
public O365ConnectorCardInputBase ();
Public Sub New ()
Applies to
O365ConnectorCardInputBase(String, String, Nullable<Boolean>, String, String)
Initializes a new instance of the O365ConnectorCardInputBase class.
public O365ConnectorCardInputBase (string type = default, string id = default, bool? isRequired = default, string title = default, string value = default);
new Microsoft.Bot.Schema.Teams.O365ConnectorCardInputBase : string * string * Nullable<bool> * string * string -> Microsoft.Bot.Schema.Teams.O365ConnectorCardInputBase
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)
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.
- title
- String
Input title that will be shown as the placeholder.
- value
- String
Default value for this input field.