Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1Webhook
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1Webhook
- 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
-
#disabled ⇒ Boolean
(also: #disabled?)
Corresponds to the JSON property
disabled. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#generic_web_service ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
Corresponds to the JSON property
genericWebService. -
#name ⇒ String
Corresponds to the JSON property
name. -
#service_directory ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
Corresponds to the JSON property
serviceDirectory. -
#timeout ⇒ String
Corresponds to the JSON property
timeout.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Webhook
constructor
A new instance of GoogleCloudDialogflowCxV3beta1Webhook.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Webhook
Returns a new instance of GoogleCloudDialogflowCxV3beta1Webhook.
6278 6279 6280 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6278 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disabled ⇒ Boolean Also known as: disabled?
Corresponds to the JSON property disabled
6250 6251 6252 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6250 def disabled @disabled end |
#display_name ⇒ String
Corresponds to the JSON property displayName
6256 6257 6258 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6256 def display_name @display_name end |
#generic_web_service ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
Corresponds to the JSON property genericWebService
6261 6262 6263 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6261 def generic_web_service @generic_web_service end |
#name ⇒ String
Corresponds to the JSON property name
6266 6267 6268 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6266 def name @name end |
#service_directory ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
Corresponds to the JSON property serviceDirectory
6271 6272 6273 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6271 def service_directory @service_directory end |
#timeout ⇒ String
Corresponds to the JSON property timeout
6276 6277 6278 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6276 def timeout @timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6283 6284 6285 6286 6287 6288 6289 6290 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6283 def update!(**args) @disabled = args[:disabled] if args.key?(:disabled) @display_name = args[:display_name] if args.key?(:display_name) @generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service) @name = args[:name] if args.key?(:name) @service_directory = args[:service_directory] if args.key?(:service_directory) @timeout = args[:timeout] if args.key?(:timeout) end |