class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportAgentResponse

The response message for Agents.ExportAgent.

Attributes

agent_content[RW]

Zip compressed raw byte content for agent. Corresponds to the JSON property `agentContent` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

agent_uri[RW]

The URI to a file containing the exported agent. This field is populated only if `agent_uri` is specified in `ExportAgentRequest`. Corresponds to the JSON property `agentUri` @return [String]

Public Class Methods

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