Class: Google::Apis::ToolresultsV1beta3::ScreenshotCluster
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::ScreenshotCluster
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
generated/google/apis/toolresults_v1beta3/representations.rb,
generated/google/apis/toolresults_v1beta3/representations.rb
Instance Attribute Summary collapse
-
#activity ⇒ String
A string that describes the activity of every screen in the cluster.
-
#cluster_id ⇒ String
A unique identifier for the cluster.
-
#key_screen ⇒ Google::Apis::ToolresultsV1beta3::Screen
A singular screen that represents the cluster as a whole.
-
#screens ⇒ Array<Google::Apis::ToolresultsV1beta3::Screen>
Full list of screens.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScreenshotCluster
constructor
A new instance of ScreenshotCluster.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ScreenshotCluster
Returns a new instance of ScreenshotCluster
1638 1639 1640 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1638 def initialize(**args) update!(**args) end |
Instance Attribute Details
#activity ⇒ String
A string that describes the activity of every screen in the cluster.
Corresponds to the JSON property activity
1618 1619 1620 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1618 def activity @activity end |
#cluster_id ⇒ String
A unique identifier for the cluster.
Corresponds to the JSON property clusterId
1623 1624 1625 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1623 def cluster_id @cluster_id end |
#key_screen ⇒ Google::Apis::ToolresultsV1beta3::Screen
A singular screen that represents the cluster as a whole. This screen will act
as the "cover" of the entire cluster. When users look at the clusters, only
the key screen from each cluster will be shown. Which screen is the key screen
is determined by the ClusteringAlgorithm
Corresponds to the JSON property keyScreen
1631 1632 1633 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1631 def key_screen @key_screen end |
#screens ⇒ Array<Google::Apis::ToolresultsV1beta3::Screen>
Full list of screens.
Corresponds to the JSON property screens
1636 1637 1638 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1636 def screens @screens end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1643 1644 1645 1646 1647 1648 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1643 def update!(**args) @activity = args[:activity] if args.key?(:activity) @cluster_id = args[:cluster_id] if args.key?(:cluster_id) @key_screen = args[:key_screen] if args.key?(:key_screen) @screens = args[:screens] if args.key?(:screens) end |