Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2FulfillmentGenericWebService
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2FulfillmentGenericWebService
- 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
-
#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) ⇒ GoogleCloudDialogflowV2FulfillmentGenericWebService
constructor
A new instance of GoogleCloudDialogflowV2FulfillmentGenericWebService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2FulfillmentGenericWebService
Returns a new instance of GoogleCloudDialogflowV2FulfillmentGenericWebService.
10044 10045 10046 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10044 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
10021 10022 10023 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10021 def is_cloud_function @is_cloud_function end |
#password ⇒ String
Corresponds to the JSON property password
10027 10028 10029 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10027 def password @password end |
#request_headers ⇒ Hash<String,String>
Corresponds to the JSON property requestHeaders
10032 10033 10034 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10032 def request_headers @request_headers end |
#uri ⇒ String
Corresponds to the JSON property uri
10037 10038 10039 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10037 def uri @uri end |
#username ⇒ String
Corresponds to the JSON property username
10042 10043 10044 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10042 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10049 10050 10051 10052 10053 10054 10055 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10049 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 |