Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRoboStats
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRoboStats
- 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
Statistics collected during a Robo test.
Instance Attribute Summary collapse
-
#actions_performed ⇒ Fixnum
Output only.
-
#crawl_duration ⇒ String
Output only.
-
#distinct_visited_screens ⇒ Fixnum
Output only.
-
#main_activity_crawl_timed_out ⇒ Boolean
(also: #main_activity_crawl_timed_out?)
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaRoboStats
constructor
A new instance of GoogleFirebaseAppdistroV1alphaRoboStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaRoboStats
Returns a new instance of GoogleFirebaseAppdistroV1alphaRoboStats.
1211 1212 1213 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions_performed ⇒ Fixnum
Output only. Number of actions that crawler performed.
Corresponds to the JSON property actionsPerformed
1193 1194 1195 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1193 def actions_performed @actions_performed end |
#crawl_duration ⇒ String
Output only. Duration of crawl.
Corresponds to the JSON property crawlDuration
1198 1199 1200 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1198 def crawl_duration @crawl_duration end |
#distinct_visited_screens ⇒ Fixnum
Output only. Number of distinct screens visited.
Corresponds to the JSON property distinctVisitedScreens
1203 1204 1205 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1203 def distinct_visited_screens @distinct_visited_screens end |
#main_activity_crawl_timed_out ⇒ Boolean Also known as: main_activity_crawl_timed_out?
Output only. Whether the main activity crawl timed out.
Corresponds to the JSON property mainActivityCrawlTimedOut
1208 1209 1210 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1208 def main_activity_crawl_timed_out @main_activity_crawl_timed_out end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1216 1217 1218 1219 1220 1221 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1216 def update!(**args) @actions_performed = args[:actions_performed] if args.key?(:actions_performed) @crawl_duration = args[:crawl_duration] if args.key?(:crawl_duration) @distinct_visited_screens = args[:distinct_visited_screens] if args.key?(:distinct_visited_screens) @main_activity_crawl_timed_out = args[:main_activity_crawl_timed_out] if args.key?(:main_activity_crawl_timed_out) end |