Show / Hide Table of Contents

Class Result.VersionData

The version of PageSpeed used to generate these results.

Inheritance
System.Object
Result.VersionData
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.Pagespeedonline.v2.Data
Assembly: Google.Apis.Pagespeedonline.v2.dll
Syntax
public class VersionData

Properties

Major

The major version number of PageSpeed used to generate these results.

Declaration
[JsonProperty("major")]
public virtual int? Major { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Minor

The minor version number of PageSpeed used to generate these results.

Declaration
[JsonProperty("minor")]
public virtual int? Minor { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
Back to top