Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportToolsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportToolsRequest
- 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
-
#data_format ⇒ String
Corresponds to the JSON property
dataFormat. -
#tools ⇒ Array<String>
Corresponds to the JSON property
tools. -
#tools_content_inline ⇒ Boolean
(also: #tools_content_inline?)
Corresponds to the JSON property
toolsContentInline. -
#tools_uri ⇒ String
Corresponds to the JSON property
toolsUri.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportToolsRequest
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExportToolsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportToolsRequest
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportToolsRequest.
7034 7035 7036 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7034 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_format ⇒ String
Corresponds to the JSON property dataFormat
7016 7017 7018 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7016 def data_format @data_format end |
#tools ⇒ Array<String>
Corresponds to the JSON property tools
7021 7022 7023 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7021 def tools @tools end |
#tools_content_inline ⇒ Boolean Also known as: tools_content_inline?
Corresponds to the JSON property toolsContentInline
7026 7027 7028 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7026 def tools_content_inline @tools_content_inline end |
#tools_uri ⇒ String
Corresponds to the JSON property toolsUri
7032 7033 7034 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7032 def tools_uri @tools_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7039 7040 7041 7042 7043 7044 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7039 def update!(**args) @data_format = args[:data_format] if args.key?(:data_format) @tools = args[:tools] if args.key?(:tools) @tools_content_inline = args[:tools_content_inline] if args.key?(:tools_content_inline) @tools_uri = args[:tools_uri] if args.key?(:tools_uri) end |