Show / Hide Table of Contents

Class LighthouseAuditResultV5

An audit's result object in a Lighthouse result.

Inheritance
System.Object
LighthouseAuditResultV5
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.PagespeedInsights.v5.Data
Assembly: Google.Apis.PagespeedInsights.v5.dll
Syntax
public class LighthouseAuditResultV5 : IDirectResponseSchema

Properties

Description

The description of the audit.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

Details

Freeform details section of the audit.

Declaration
[JsonProperty("details")]
public virtual IDictionary<string, object> Details { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>

DisplayValue

The value that should be displayed on the UI for this audit.

Declaration
[JsonProperty("displayValue")]
public virtual string DisplayValue { get; set; }
Property Value
Type Description
System.String

ErrorMessage

An error message from a thrown error inside the audit.

Declaration
[JsonProperty("errorMessage")]
public virtual string ErrorMessage { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Explanation

An explanation of the errors in the audit.

Declaration
[JsonProperty("explanation")]
public virtual string Explanation { get; set; }
Property Value
Type Description
System.String

Id

The audit's id.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

NumericValue

A numeric value that has a meaning specific to the audit, e.g. the number of nodes in the DOM or the timestamp of a specific load event. More information can be found in the audit details, if present.

Declaration
[JsonProperty("numericValue")]
public virtual double? NumericValue { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Score

The score of the audit, can be null.

Declaration
[JsonProperty("score")]
public virtual object Score { get; set; }
Property Value
Type Description
System.Object

ScoreDisplayMode

The enumerated score display mode.

Declaration
[JsonProperty("scoreDisplayMode")]
public virtual string ScoreDisplayMode { get; set; }
Property Value
Type Description
System.String

Title

The human readable title.

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Warnings

Possible warnings that occurred in the audit, can be null.

Declaration
[JsonProperty("warnings")]
public virtual object Warnings { get; set; }
Property Value
Type Description
System.Object

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top