class Google::Apis::SearchconsoleV1::TestStatus
Final state of the test, including error details if necessary.
Attributes
details[RW]
Error details if applicable. Corresponds to the JSON property `details` @return [String]
status[RW]
Status of the test. Corresponds to the JSON property `status` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/searchconsole_v1/classes.rb, line 456 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 461 def update!(**args) @details = args[:details] if args.key?(:details) @status = args[:status] if args.key?(:status) end