Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportFlowRequest

Inherits:
Object
  • Object
show all
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

Overview

The request message for Flows.ExportFlow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportFlowRequest

Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportFlowRequest.



4393
4394
4395
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4393

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#flow_uriString

Optional. The Google Cloud Storage 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

Returns:

  • (String)


4385
4386
4387
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4385

def flow_uri
  @flow_uri
end

#include_referenced_flowsBoolean Also known as: include_referenced_flows?

Optional. Whether to export flows referenced by the specified flow. Corresponds to the JSON property includeReferencedFlows

Returns:

  • (Boolean)


4390
4391
4392
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4390

def include_referenced_flows
  @include_referenced_flows
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4398
4399
4400
4401
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4398

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