O365ConnectorCardInputBase Class
- java.
lang. Object - com.
microsoft. bot. schema. teams. O365ConnectorCardInputBase
- com.
public class O365ConnectorCardInputBase
O365 connector card input for ActionCard action.
Constructor Summary
| Constructor | Description | |
|---|---|---|
| O365ConnectorCardInputBase() | ||
Method Summary
| Modifier and Type | Method and Description |
|---|---|
| java.lang.String |
getId()
Gets the input Id. |
| java.lang.Boolean |
getRequired()
Gets whether this input is a required field. |
| java.lang.String |
getTitle()
Gets input title that will be shown as the placeholder. |
| java.lang.String |
getType()
Gets input type name. |
| java.lang.String |
getValue()
Gets default value for this input field. |
| void |
setId(String withId)
Sets the input Id. |
| void |
setRequired(Boolean withRequired)
Sets whether this input is a required field. |
| void |
setTitle(String withTitle)
Sets input title that will be shown as the placeholder. |
| void |
setType(String withType)
Sets input type name. |
| void |
setValue(String withValue)
Sets default value for this input field. |
Methods inherited from java.lang.Object
Constructor Details
O365ConnectorCardInputBase
public O365ConnectorCardInputBase()
Method Details
getId
public String getId()
Gets the input Id. It must be unique per entire O365 connector card.
Returns:
getRequired
public Boolean getRequired()
Gets whether this input is a required field. Default value is false.
Returns:
getTitle
public String getTitle()
Gets input title that will be shown as the placeholder.
Returns:
getType
public String getType()
Gets input type name. Possible values include: 'textInput', 'dateInput', 'multichoiceInput'
Returns:
getValue
public String getValue()
Gets default value for this input field.
Returns:
setId
public void setId(String withId)
Sets the input Id. It must be unique per entire O365 connector card.
Parameters:
setRequired
public void setRequired(Boolean withRequired)
Sets whether this input is a required field.
Parameters:
setTitle
public void setTitle(String withTitle)
Sets input title that will be shown as the placeholder.
Parameters:
setType
public void setType(String withType)
Sets input type name. Possible values include: 'textInput', 'dateInput', 'multichoiceInput'
Parameters:
setValue
public void setValue(String withValue)
Sets default value for this input field.
Parameters: