class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ExportFlowResponse

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_v2beta1/classes.rb, line 3022
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_v2beta1/classes.rb, line 3027
def update!(**args)
  @flow_content = args[:flow_content] if args.key?(:flow_content)
  @flow_uri = args[:flow_uri] if args.key?(:flow_uri)
end