Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1IntentParameter
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1IntentParameter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#entity_type ⇒ String
Corresponds to the JSON property
entityType. -
#id ⇒ String
Corresponds to the JSON property
id. -
#is_list ⇒ Boolean
(also: #is_list?)
Corresponds to the JSON property
isList. -
#redact ⇒ Boolean
(also: #redact?)
Corresponds to the JSON property
redact.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1IntentParameter
constructor
A new instance of GoogleCloudDialogflowCxV3beta1IntentParameter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1IntentParameter
Returns a new instance of GoogleCloudDialogflowCxV3beta1IntentParameter.
4997 4998 4999 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4997 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
Corresponds to the JSON property entityType
4978 4979 4980 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4978 def entity_type @entity_type end |
#id ⇒ String
Corresponds to the JSON property id
4983 4984 4985 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4983 def id @id end |
#is_list ⇒ Boolean Also known as: is_list?
Corresponds to the JSON property isList
4988 4989 4990 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4988 def is_list @is_list end |
#redact ⇒ Boolean Also known as: redact?
Corresponds to the JSON property redact
4994 4995 4996 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4994 def redact @redact end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5002 5003 5004 5005 5006 5007 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5002 def update!(**args) @entity_type = args[:entity_type] if args.key?(:entity_type) @id = args[:id] if args.key?(:id) @is_list = args[:is_list] if args.key?(:is_list) @redact = args[:redact] if args.key?(:redact) end |