Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ExportFlowResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb

Overview

The response message for Flows.ExportFlow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportFlowResponse

Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportFlowResponse.



4832
4833
4834
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4832

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

Instance Attribute Details

#flow_contentString

Uncompressed raw byte content for flow. Corresponds to the JSON property flowContent NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


4824
4825
4826
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4824

def flow_content
  @flow_content
end

#flow_uriString

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

Returns:

  • (String)


4830
4831
4832
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4830

def flow_uri
  @flow_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4837
4838
4839
4840
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4837

def update!(**args)
  @flow_content = args[:flow_content] if args.key?(:flow_content)
  @flow_uri = args[:flow_uri] if args.key?(:flow_uri)
end