Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
- 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
-
#is_cloud_function ⇒ Boolean
(also: #is_cloud_function?)
Corresponds to the JSON property
isCloudFunction. -
#password ⇒ String
Corresponds to the JSON property
password. -
#request_headers ⇒ Hash<String,String>
Corresponds to the JSON property
requestHeaders. -
#uri ⇒ String
Corresponds to the JSON property
uri. -
#username ⇒ String
Corresponds to the JSON property
username.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
constructor
A new instance of GoogleCloudDialogflowV2beta1FulfillmentGenericWebService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
Returns a new instance of GoogleCloudDialogflowV2beta1FulfillmentGenericWebService.
13868 13869 13870 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13868 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_cloud_function ⇒ Boolean Also known as: is_cloud_function?
Corresponds to the JSON property isCloudFunction
13845 13846 13847 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13845 def is_cloud_function @is_cloud_function end |
#password ⇒ String
Corresponds to the JSON property password
13851 13852 13853 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13851 def password @password end |
#request_headers ⇒ Hash<String,String>
Corresponds to the JSON property requestHeaders
13856 13857 13858 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13856 def request_headers @request_headers end |
#uri ⇒ String
Corresponds to the JSON property uri
13861 13862 13863 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13861 def uri @uri end |
#username ⇒ String
Corresponds to the JSON property username
13866 13867 13868 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13866 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13873 13874 13875 13876 13877 13878 13879 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13873 def update!(**args) @is_cloud_function = args[:is_cloud_function] if args.key?(:is_cloud_function) @password = args[:password] if args.key?(:password) @request_headers = args[:request_headers] if args.key?(:request_headers) @uri = args[:uri] if args.key?(:uri) @username = args[:username] if args.key?(:username) end |