DigitalAssistantParameterValue¶
-
class
oci.oda.models.
DigitalAssistantParameterValue
(**kwargs)¶ Bases:
object
Properties for configuring a Parameter in a Digital Assistant instance.
Attributes
TYPE_BOOLEAN
A constant which can be used with the type property of a DigitalAssistantParameterValue. TYPE_FLOAT
A constant which can be used with the type property of a DigitalAssistantParameterValue. TYPE_INTEGER
A constant which can be used with the type property of a DigitalAssistantParameterValue. TYPE_SECURE
A constant which can be used with the type property of a DigitalAssistantParameterValue. TYPE_STRING
A constant which can be used with the type property of a DigitalAssistantParameterValue. name
[Required] Gets the name of this DigitalAssistantParameterValue. type
[Required] Gets the type of this DigitalAssistantParameterValue. value
[Required] Gets the value of this DigitalAssistantParameterValue. Methods
__init__
(**kwargs)Initializes a new DigitalAssistantParameterValue object with values from keyword arguments. -
TYPE_BOOLEAN
= 'BOOLEAN'¶ A constant which can be used with the type property of a DigitalAssistantParameterValue. This constant has a value of “BOOLEAN”
-
TYPE_FLOAT
= 'FLOAT'¶ A constant which can be used with the type property of a DigitalAssistantParameterValue. This constant has a value of “FLOAT”
-
TYPE_INTEGER
= 'INTEGER'¶ A constant which can be used with the type property of a DigitalAssistantParameterValue. This constant has a value of “INTEGER”
-
TYPE_SECURE
= 'SECURE'¶ A constant which can be used with the type property of a DigitalAssistantParameterValue. This constant has a value of “SECURE”
-
TYPE_STRING
= 'STRING'¶ A constant which can be used with the type property of a DigitalAssistantParameterValue. This constant has a value of “STRING”
-
__init__
(**kwargs)¶ Initializes a new DigitalAssistantParameterValue object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this DigitalAssistantParameterValue.
- type (str) – The value to assign to the type property of this DigitalAssistantParameterValue. Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, “SECURE”
- value (str) – The value to assign to the value property of this DigitalAssistantParameterValue.
-
name
¶ [Required] Gets the name of this DigitalAssistantParameterValue. The Parameter name. This must be unique within the parent resource.
Returns: The name of this DigitalAssistantParameterValue. Return type: str
-
type
¶ [Required] Gets the type of this DigitalAssistantParameterValue. The value type.
Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, “SECURE”
Returns: The type of this DigitalAssistantParameterValue. Return type: str
-
value
¶ [Required] Gets the value of this DigitalAssistantParameterValue. The current value. The value will be interpreted based on the type.
Returns: The value of this DigitalAssistantParameterValue. Return type: str
-