Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Webhook
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Webhook
- 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
-
#disabled ⇒ Boolean
(also: #disabled?)
Corresponds to the JSON property
disabled. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#generic_web_service ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
Corresponds to the JSON property
genericWebService. -
#name ⇒ String
Corresponds to the JSON property
name. -
#service_directory ⇒ Google::Apis::DialogflowV3::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.
12585 12586 12587 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12585 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disabled ⇒ Boolean Also known as: disabled?
Corresponds to the JSON property disabled
12557 12558 12559 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12557 def disabled @disabled end |
#display_name ⇒ String
Corresponds to the JSON property displayName
12563 12564 12565 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12563 def display_name @display_name end |
#generic_web_service ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
Corresponds to the JSON property genericWebService
12568 12569 12570 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12568 def generic_web_service @generic_web_service end |
#name ⇒ String
Corresponds to the JSON property name
12573 12574 12575 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12573 def name @name end |
#service_directory ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
Corresponds to the JSON property serviceDirectory
12578 12579 12580 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12578 def service_directory @service_directory end |
#timeout ⇒ String
Corresponds to the JSON property timeout
12583 12584 12585 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12583 def timeout @timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12590 12591 12592 12593 12594 12595 12596 12597 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12590 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 |