Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
- 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. -
#intents ⇒ Array<String>
Corresponds to the JSON property
intents. -
#intents_content_inline ⇒ Boolean
(also: #intents_content_inline?)
Corresponds to the JSON property
intentsContentInline. -
#intents_uri ⇒ String
Corresponds to the JSON property
intentsUri.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExportIntentsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportIntentsRequest
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportIntentsRequest.
6876 6877 6878 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6876 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_format ⇒ String
Corresponds to the JSON property dataFormat
6858 6859 6860 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6858 def data_format @data_format end |
#intents ⇒ Array<String>
Corresponds to the JSON property intents
6863 6864 6865 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6863 def intents @intents end |
#intents_content_inline ⇒ Boolean Also known as: intents_content_inline?
Corresponds to the JSON property intentsContentInline
6868 6869 6870 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6868 def intents_content_inline @intents_content_inline end |
#intents_uri ⇒ String
Corresponds to the JSON property intentsUri
6874 6875 6876 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6874 def intents_uri @intents_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6881 6882 6883 6884 6885 6886 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6881 def update!(**args) @data_format = args[:data_format] if args.key?(:data_format) @intents = args[:intents] if args.key?(:intents) @intents_content_inline = args[:intents_content_inline] if args.key?(:intents_content_inline) @intents_uri = args[:intents_uri] if args.key?(:intents_uri) end |