class Google::Apis::SearchconsoleV1::RunMobileFriendlyTestResponse
Mobile-friendly test response, including mobile-friendly issues and resource issues.
Attributes
Test verdict, whether the page is mobile friendly or not. Corresponds to the JSON property `mobileFriendliness` @return [String]
List of mobile-usability issues. Corresponds to the JSON property `mobileFriendlyIssues` @return [Array<Google::Apis::SearchconsoleV1::MobileFriendlyIssue>]
Information about embedded resources issues. Corresponds to the JSON property `resourceIssues` @return [Array<Google::Apis::SearchconsoleV1::ResourceIssue>]
Describe image data. Corresponds to the JSON property `screenshot` @return [Google::Apis::SearchconsoleV1::Image]
Final state of the test, including error details if necessary. Corresponds to the JSON property `testStatus` @return [Google::Apis::SearchconsoleV1::TestStatus]
Public Class Methods
# File lib/google/apis/searchconsole_v1/classes.rb, line 271 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/searchconsole_v1/classes.rb, line 276 def update!(**args) @mobile_friendliness = args[:mobile_friendliness] if args.key?(:mobile_friendliness) @mobile_friendly_issues = args[:mobile_friendly_issues] if args.key?(:mobile_friendly_issues) @resource_issues = args[:resource_issues] if args.key?(:resource_issues) @screenshot = args[:screenshot] if args.key?(:screenshot) @test_status = args[:test_status] if args.key?(:test_status) end