class Google::Apis::SearchconsoleV1::RunMobileFriendlyTestRequest
Mobile-friendly test request.
Attributes
request_screenshot[RW]
Whether or not screenshot is requested. Default is false. Corresponds to the JSON property `requestScreenshot` @return [Boolean]
request_screenshot?[RW]
Whether or not screenshot is requested. Default is false. Corresponds to the JSON property `requestScreenshot` @return [Boolean]
url[RW]
URL for inspection. Corresponds to the JSON property `url` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/searchconsole_v1/classes.rb, line 230 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/searchconsole_v1/classes.rb, line 235 def update!(**args) @request_screenshot = args[:request_screenshot] if args.key?(:request_screenshot) @url = args[:url] if args.key?(:url) end