Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Instance Attribute Summary collapse
-
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#just_collected ⇒ Boolean
(also: #just_collected?)
Corresponds to the JSON property
justCollected. -
#required ⇒ Boolean
(also: #required?)
Corresponds to the JSON property
required. -
#state ⇒ String
Corresponds to the JSON property
state. -
#value ⇒ Object
Corresponds to the JSON property
value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo
constructor
A new instance of GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo
Returns a new instance of GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo.
1939 1940 1941 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1939 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Corresponds to the JSON property displayName
1915 1916 1917 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1915 def display_name @display_name end |
#just_collected ⇒ Boolean Also known as: just_collected?
Corresponds to the JSON property justCollected
1920 1921 1922 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1920 def just_collected @just_collected end |
#required ⇒ Boolean Also known as: required?
Corresponds to the JSON property required
1926 1927 1928 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1926 def required @required end |
#state ⇒ String
Corresponds to the JSON property state
1932 1933 1934 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1932 def state @state end |
#value ⇒ Object
Corresponds to the JSON property value
1937 1938 1939 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1937 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1944 1945 1946 1947 1948 1949 1950 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1944 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @just_collected = args[:just_collected] if args.key?(:just_collected) @required = args[:required] if args.key?(:required) @state = args[:state] if args.key?(:state) @value = args[:value] if args.key?(:value) end |