Class: Google::Apis::SearchconsoleV1::TestStatus
- Inherits:
-
Object
- Object
- Google::Apis::SearchconsoleV1::TestStatus
- 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
Final state of the test, including error details if necessary.
Instance Attribute Summary collapse
-
#details ⇒ String
Error details if applicable.
-
#status ⇒ String
Status of the test.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestStatus
constructor
A new instance of TestStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestStatus
Returns a new instance of TestStatus
140 141 142 |
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 140 def initialize(**args) update!(**args) end |
Instance Attribute Details
#details ⇒ String
Error details if applicable.
Corresponds to the JSON property details
138 139 140 |
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 138 def details @details end |
#status ⇒ String
Status of the test.
Corresponds to the JSON property status
133 134 135 |
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 133 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
145 146 147 148 |
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 145 def update!(**args) @status = args[:status] if args.key?(:status) @details = args[:details] if args.key?(:details) end |