Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb

Overview

Instructions for AI driven test

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaAiInstructions

Returns a new instance of GoogleFirebaseAppdistroV1alphaAiInstructions.



196
197
198
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 196

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#app_descriptionString

Optional. Describes the app to give the AI some context Corresponds to the JSON property appDescription

Returns:

  • (String)


189
190
191
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 189

def app_description
  @app_description
end

#stepsArray<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep>

Required. Steps to be accomplished by the AI Corresponds to the JSON property steps



194
195
196
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 194

def steps
  @steps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



201
202
203
204
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 201

def update!(**args)
  @app_description = args[:app_description] if args.key?(:app_description)
  @steps = args[:steps] if args.key?(:steps)
end