Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ExportDocumentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ExportDocumentRequest
- 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
-
#export_full_content ⇒ Boolean
(also: #export_full_content?)
Corresponds to the JSON property
exportFullContent. -
#gcs_destination ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GcsDestination
Corresponds to the JSON property
gcsDestination. -
#smart_messaging_partial_update ⇒ Boolean
(also: #smart_messaging_partial_update?)
Corresponds to the JSON property
smartMessagingPartialUpdate.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ExportDocumentRequest
constructor
A new instance of GoogleCloudDialogflowV2ExportDocumentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ExportDocumentRequest
Returns a new instance of GoogleCloudDialogflowV2ExportDocumentRequest.
9796 9797 9798 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9796 def initialize(**args) update!(**args) end |
Instance Attribute Details
#export_full_content ⇒ Boolean Also known as: export_full_content?
Corresponds to the JSON property exportFullContent
9782 9783 9784 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9782 def export_full_content @export_full_content end |
#gcs_destination ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GcsDestination
Corresponds to the JSON property gcsDestination
9788 9789 9790 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9788 def gcs_destination @gcs_destination end |
#smart_messaging_partial_update ⇒ Boolean Also known as: smart_messaging_partial_update?
Corresponds to the JSON property smartMessagingPartialUpdate
9793 9794 9795 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9793 def smart_messaging_partial_update @smart_messaging_partial_update end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9801 9802 9803 9804 9805 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9801 def update!(**args) @export_full_content = args[:export_full_content] if args.key?(:export_full_content) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) @smart_messaging_partial_update = args[:smart_messaging_partial_update] if args.key?(:smart_messaging_partial_update) end |