class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportTestCasesRequest

The request message for TestCases.ImportTestCases.

Attributes

content[RW]

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

gcs_uri[RW]

The [Google Cloud Storage](cloud.google.com/storage/docs/) URI to import test cases from. The format of this URI must be `gs:///`. Corresponds to the JSON property `gcsUri` @return [String]

Public Class Methods

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