Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/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.
10105 10106 10107 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10105 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Corresponds to the JSON property displayName
10081 10082 10083 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10081 def display_name @display_name end |
#just_collected ⇒ Boolean Also known as: just_collected?
Corresponds to the JSON property justCollected
10086 10087 10088 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10086 def just_collected @just_collected end |
#required ⇒ Boolean Also known as: required?
Corresponds to the JSON property required
10092 10093 10094 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10092 def required @required end |
#state ⇒ String
Corresponds to the JSON property state
10098 10099 10100 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10098 def state @state end |
#value ⇒ Object
Corresponds to the JSON property value
10103 10104 10105 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10103 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10110 10111 10112 10113 10114 10115 10116 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10110 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 |