Class: Google::Apis::PagespeedonlineV5::PagespeedApiLoadingExperienceV5
- Inherits:
-
Object
- Object
- Google::Apis::PagespeedonlineV5::PagespeedApiLoadingExperienceV5
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/pagespeedonline_v5/classes.rb,
lib/google/apis/pagespeedonline_v5/representations.rb,
lib/google/apis/pagespeedonline_v5/representations.rb
Overview
The CrUX loading experience object that contains CrUX data breakdowns.
Instance Attribute Summary collapse
-
#id ⇒ String
The url, pattern or origin which the metrics are on.
-
#initial_url ⇒ String
The requested URL, which may differ from the resolved "id".
-
#metrics ⇒ Hash<String,Google::Apis::PagespeedonlineV5::UserPageLoadMetricV5>
The map of .
-
#origin_fallback ⇒ Boolean
(also: #origin_fallback?)
True if the result is an origin fallback from a page, false otherwise.
-
#overall_category ⇒ String
The human readable speed "category" of the id.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PagespeedApiLoadingExperienceV5
constructor
A new instance of PagespeedApiLoadingExperienceV5.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PagespeedApiLoadingExperienceV5
Returns a new instance of PagespeedApiLoadingExperienceV5.
617 618 619 |
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 617 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The url, pattern or origin which the metrics are on.
Corresponds to the JSON property id
594 595 596 |
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 594 def id @id end |
#initial_url ⇒ String
The requested URL, which may differ from the resolved "id".
Corresponds to the JSON property initial_url
599 600 601 |
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 599 def initial_url @initial_url end |
#metrics ⇒ Hash<String,Google::Apis::PagespeedonlineV5::UserPageLoadMetricV5>
The map of .
Corresponds to the JSON property metrics
604 605 606 |
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 604 def metrics @metrics end |
#origin_fallback ⇒ Boolean Also known as: origin_fallback?
True if the result is an origin fallback from a page, false otherwise.
Corresponds to the JSON property origin_fallback
609 610 611 |
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 609 def origin_fallback @origin_fallback end |
#overall_category ⇒ String
The human readable speed "category" of the id.
Corresponds to the JSON property overall_category
615 616 617 |
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 615 def overall_category @overall_category end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
622 623 624 625 626 627 628 |
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 622 def update!(**args) @id = args[:id] if args.key?(:id) @initial_url = args[:initial_url] if args.key?(:initial_url) @metrics = args[:metrics] if args.key?(:metrics) @origin_fallback = args[:origin_fallback] if args.key?(:origin_fallback) @overall_category = args[:overall_category] if args.key?(:overall_category) end |