Class: Google::Apis::SearchconsoleV1::RunMobileFriendlyTestResponse

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunMobileFriendlyTestResponse

Returns a new instance of RunMobileFriendlyTestResponse.



271
272
273
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 271

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

Instance Attribute Details

#mobile_friendlinessString

Test verdict, whether the page is mobile friendly or not. Corresponds to the JSON property mobileFriendliness

Returns:

  • (String)


249
250
251
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 249

def mobile_friendliness
  @mobile_friendliness
end

#mobile_friendly_issuesArray<Google::Apis::SearchconsoleV1::MobileFriendlyIssue>

List of mobile-usability issues. Corresponds to the JSON property mobileFriendlyIssues



254
255
256
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 254

def mobile_friendly_issues
  @mobile_friendly_issues
end

#resource_issuesArray<Google::Apis::SearchconsoleV1::ResourceIssue>

Information about embedded resources issues. Corresponds to the JSON property resourceIssues



259
260
261
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 259

def resource_issues
  @resource_issues
end

#screenshotGoogle::Apis::SearchconsoleV1::Image

Describe image data. Corresponds to the JSON property screenshot



264
265
266
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 264

def screenshot
  @screenshot
end

#test_statusGoogle::Apis::SearchconsoleV1::TestStatus

Final state of the test, including error details if necessary. Corresponds to the JSON property testStatus



269
270
271
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 269

def test_status
  @test_status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



276
277
278
279
280
281
282
# File 'generated/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