class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ImportAgentRequest

The request message for Agents.ImportAgent.

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 Google Cloud Storage file containing the agent to import. Note: The URI must start with “gs://”. Corresponds to the JSON property `agentUri` @return [String]

Public Class Methods

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