Class: Google::Apis::ContentV2_1::Error
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::Error
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Overview
An error returned by the API.
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain of the error.
-
#message ⇒ String
A description of the error.
-
#reason ⇒ String
The error code.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Error
constructor
A new instance of Error.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Error
Returns a new instance of Error.
3155 3156 3157 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3155 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ String
The domain of the error.
Corresponds to the JSON property domain
3143 3144 3145 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3143 def domain @domain end |
#message ⇒ String
A description of the error.
Corresponds to the JSON property message
3148 3149 3150 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3148 def @message end |
#reason ⇒ String
The error code.
Corresponds to the JSON property reason
3153 3154 3155 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3153 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3160 3161 3162 3163 3164 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 3160 def update!(**args) @domain = args[:domain] if args.key?(:domain) @message = args[:message] if args.key?(:message) @reason = args[:reason] if args.key?(:reason) end |