class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportFlowResponse
The response message for Flows.ExportFlow.
Attributes
flow_content[RW]
Uncompressed raw byte content for flow. Corresponds to the JSON property `flowContent` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
flow_uri[RW]
The URI to a file containing the exported flow. This field is populated only if `flow_uri` is specified in ExportFlowRequest. Corresponds to the JSON property `flowUri` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 1402 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 1407 def update!(**args) @flow_content = args[:flow_content] if args.key?(:flow_content) @flow_uri = args[:flow_uri] if args.key?(:flow_uri) end