class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportTestCasesRequest
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_v3beta1/classes.rb, line 4685 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_v3beta1/classes.rb, line 4690 def update!(**args) @content = args[:content] if args.key?(:content) @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri) end