Class: Google::Apis::PagespeedonlineV5::PagespeedApiLoadingExperienceV5

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#idString

The url, pattern or origin which the metrics are on. Corresponds to the JSON property id

Returns:

  • (String)


594
595
596
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 594

def id
  @id
end

#initial_urlString

The requested URL, which may differ from the resolved "id". Corresponds to the JSON property initial_url

Returns:

  • (String)


599
600
601
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 599

def initial_url
  @initial_url
end

#metricsHash<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_fallbackBoolean 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

Returns:

  • (Boolean)


609
610
611
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 609

def origin_fallback
  @origin_fallback
end

#overall_categoryString

The human readable speed "category" of the id. Corresponds to the JSON property overall_category

Returns:

  • (String)


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