Class Inputs
Types of data that users can input on cards or dialogs. The input type depends on the type of values that the widget accepts.
Implements
Inherited Members
Namespace: Google.Apis.HangoutsChat.v1.Data
Assembly: Google.Apis.HangoutsChat.v1.dll
Syntax
public class Inputs : IDirectResponseSchema
Properties
DateInput
Date input values from a
DateTimePicker widget
that only accepts date values.
Declaration
[JsonProperty("dateInput")]
public virtual DateInput DateInput { get; set; }
Property Value
| Type | Description |
|---|---|
| DateInput |
DateTimeInput
Date and time input values from a
DateTimePicker widget
that accepts both a date and time.
Declaration
[JsonProperty("dateTimeInput")]
public virtual DateTimeInput DateTimeInput { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeInput |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
StringInputs
A list of strings that represent the values that the user inputs in a widget. If the widget only accepts one
value, such as a TextInput
widget, the list contains one string object. If the widget accepts multiple values, such as a
SelectionInput widget of
checkboxes, the list contains a string object for each value that the user inputs or selects.
Declaration
[JsonProperty("stringInputs")]
public virtual StringInputs StringInputs { get; set; }
Property Value
| Type | Description |
|---|---|
| StringInputs |
TimeInput
Time input values from a
DateTimePicker widget
that only accepts time values.
Declaration
[JsonProperty("timeInput")]
public virtual TimeInput TimeInput { get; set; }
Property Value
| Type | Description |
|---|---|
| TimeInput |