class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportFlowRequest

The request message for Flows.ExportFlow.

Attributes

flow_uri[RW]

Optional. The [Google Cloud Storage](cloud.google.com/storage/docs/) URI to export the flow to. The format of this URI must be `gs:///`. If left unspecified, the serialized flow is returned inline. Corresponds to the JSON property `flowUri` @return [String]

include_referenced_flows[RW]

Optional. Whether to export flows referenced by the specified flow. Corresponds to the JSON property `includeReferencedFlows` @return [Boolean]

include_referenced_flows?[RW]

Optional. Whether to export flows referenced by the specified flow. Corresponds to the JSON property `includeReferencedFlows` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 1375
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 1380
def update!(**args)
  @flow_uri = args[:flow_uri] if args.key?(:flow_uri)
  @include_referenced_flows = args[:include_referenced_flows] if args.key?(:include_referenced_flows)
end