class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestConfig

Represents configurations for a test case.

Attributes

flow[RW]

Flow name. If not set, default start flow is assumed. Format: `projects// locations//agents//flows/`. Corresponds to the JSON property `flow` @return [String]

tracking_parameters[RW]

Session parameters to be compared when calculating differences. Corresponds to the JSON property `trackingParameters` @return [Array<String>]

Public Class Methods

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