Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3beta1/classes.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb
Overview
Represents parameter information.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Always present for WebhookRequest.
-
#just_collected ⇒ Boolean
(also: #just_collected?)
Optional for WebhookRequest.
-
#required ⇒ Boolean
(also: #required?)
Optional for both WebhookRequest and WebhookResponse.
-
#state ⇒ String
Always present for WebhookRequest.
-
#value ⇒ Object
Optional for both WebhookRequest and WebhookResponse.
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.
1326 1327 1328 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 1326 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Always present for WebhookRequest. Required for WebhookResponse. The human-
readable name of the parameter, unique within the form. This field cannot be
modified by the webhook.
Corresponds to the JSON property displayName
1295 1296 1297 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 1295 def display_name @display_name end |
#just_collected ⇒ Boolean Also known as: just_collected?
Optional for WebhookRequest. Ignored for WebhookResponse. Indicates if the
parameter value was just collected on the last conversation turn.
Corresponds to the JSON property justCollected
1301 1302 1303 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 1301 def just_collected @just_collected end |
#required ⇒ Boolean Also known as: required?
Optional for both WebhookRequest and WebhookResponse. Indicates whether the
parameter is required. Optional parameters will not trigger prompts; however,
they are filled if the user specifies them. Required parameters must be filled
before form filling concludes.
Corresponds to the JSON property required
1310 1311 1312 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 1310 def required @required end |
#state ⇒ String
Always present for WebhookRequest. Required for WebhookResponse. The state of
the parameter. This field can be set to INVALID by the webhook to invalidate
the parameter; other values set by the webhook will be ignored.
Corresponds to the JSON property state
1318 1319 1320 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 1318 def state @state end |
#value ⇒ Object
Optional for both WebhookRequest and WebhookResponse. The value of the
parameter. This field can be set by the webhook to change the parameter value.
Corresponds to the JSON property value
1324 1325 1326 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 1324 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1331 1332 1333 1334 1335 1336 1337 |
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 1331 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 |