Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3Webhook
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3Webhook
- 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
-
#disabled ⇒ Boolean
(also: #disabled?)
Corresponds to the JSON property
disabled. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#generic_web_service ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService
Corresponds to the JSON property
genericWebService. -
#name ⇒ String
Corresponds to the JSON property
name. -
#service_directory ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
Corresponds to the JSON property
serviceDirectory. -
#timeout ⇒ String
Corresponds to the JSON property
timeout.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Webhook
constructor
A new instance of GoogleCloudDialogflowCxV3Webhook.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Webhook
Returns a new instance of GoogleCloudDialogflowCxV3Webhook.
2904 2905 2906 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2904 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disabled ⇒ Boolean Also known as: disabled?
Corresponds to the JSON property disabled
2876 2877 2878 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2876 def disabled @disabled end |
#display_name ⇒ String
Corresponds to the JSON property displayName
2882 2883 2884 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2882 def display_name @display_name end |
#generic_web_service ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService
Corresponds to the JSON property genericWebService
2887 2888 2889 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2887 def generic_web_service @generic_web_service end |
#name ⇒ String
Corresponds to the JSON property name
2892 2893 2894 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2892 def name @name end |
#service_directory ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
Corresponds to the JSON property serviceDirectory
2897 2898 2899 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2897 def service_directory @service_directory end |
#timeout ⇒ String
Corresponds to the JSON property timeout
2902 2903 2904 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2902 def timeout @timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2909 2910 2911 2912 2913 2914 2915 2916 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2909 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 |