Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/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) ⇒ GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo
constructor
A new instance of GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo
Returns a new instance of GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo.
11626 11627 11628 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11626 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Corresponds to the JSON property displayName
11602 11603 11604 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11602 def display_name @display_name end |
#just_collected ⇒ Boolean Also known as: just_collected?
Corresponds to the JSON property justCollected
11607 11608 11609 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11607 def just_collected @just_collected end |
#required ⇒ Boolean Also known as: required?
Corresponds to the JSON property required
11613 11614 11615 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11613 def required @required end |
#state ⇒ String
Corresponds to the JSON property state
11619 11620 11621 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11619 def state @state end |
#value ⇒ Object
Corresponds to the JSON property value
11624 11625 11626 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11624 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11631 11632 11633 11634 11635 11636 11637 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11631 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 |