Class: Google::Apis::PagespeedonlineV5::UserPageLoadMetricV5

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

Overview

A CrUX metric object for a single metric and form factor.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserPageLoadMetricV5

Returns a new instance of UserPageLoadMetricV5.



834
835
836
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 834

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

Instance Attribute Details

#categoryString

The category of the specific time metric. Corresponds to the JSON property category

Returns:

  • (String)


805
806
807
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 805

def category
  @category
end

#distributionsArray<Google::Apis::PagespeedonlineV5::Bucket>

Metric distributions. Proportions should sum up to 1. Corresponds to the JSON property distributions



810
811
812
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 810

def distributions
  @distributions
end

#form_factorString

Identifies the form factor of the metric being collected. Corresponds to the JSON property formFactor

Returns:

  • (String)


815
816
817
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 815

def form_factor
  @form_factor
end

#medianFixnum

The median number of the metric, in millisecond. Corresponds to the JSON property median

Returns:

  • (Fixnum)


820
821
822
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 820

def median
  @median
end

#metric_idString

Identifies the type of the metric. Corresponds to the JSON property metricId

Returns:

  • (String)


825
826
827
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 825

def metric_id
  @metric_id
end

#percentileFixnum

We use this field to store certain percentile value for this metric. For v4, this field contains pc50. For v5, this field contains pc90. Corresponds to the JSON property percentile

Returns:

  • (Fixnum)


832
833
834
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 832

def percentile
  @percentile
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



839
840
841
842
843
844
845
846
# File 'generated/google/apis/pagespeedonline_v5/classes.rb', line 839

def update!(**args)
  @category = args[:category] if args.key?(:category)
  @distributions = args[:distributions] if args.key?(:distributions)
  @form_factor = args[:form_factor] if args.key?(:form_factor)
  @median = args[:median] if args.key?(:median)
  @metric_id = args[:metric_id] if args.key?(:metric_id)
  @percentile = args[:percentile] if args.key?(:percentile)
end