class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ExportTestCasesResponse
The response message for TestCases.ExportTestCases.
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 URI to a file containing the exported test cases. This field is populated only if `gcs_uri` is specified in ExportTestCasesRequest. 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 522 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 527 def update!(**args) @content = args[:content] if args.key?(:content) @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri) end