Show / Hide Table of Contents

Class RunMobileFriendlyTestResponse

Mobile-friendly test response, including mobile-friendly issues and resource issues.

Inheritance
System.Object
RunMobileFriendlyTestResponse
Implements
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.SearchConsole.v1.Data
Assembly: Google.Apis.SearchConsole.v1.dll
Syntax
public class RunMobileFriendlyTestResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MobileFriendliness

Test verdict, whether the page is mobile friendly or not.

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

MobileFriendlyIssues

List of mobile-usability issues.

Declaration
[JsonProperty("mobileFriendlyIssues")]
public virtual IList<MobileFriendlyIssue> MobileFriendlyIssues { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<MobileFriendlyIssue>

ResourceIssues

Information about embedded resources issues.

Declaration
[JsonProperty("resourceIssues")]
public virtual IList<ResourceIssue> ResourceIssues { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ResourceIssue>

Screenshot

Screenshot of the requested URL.

Declaration
[JsonProperty("screenshot")]
public virtual Image Screenshot { get; set; }
Property Value
Type Description
Image

TestStatus

Final state of the test, can be either complete or an error.

Declaration
[JsonProperty("testStatus")]
public virtual TestStatus TestStatus { get; set; }
Property Value
Type Description
TestStatus

Implements

IDirectResponseSchema
Back to top