Class: Google::Apis::ContentV2sandbox::Error

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

Overview

An error returned by the API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Error

Returns a new instance of Error



44
45
46
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 44

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

Instance Attribute Details

#domainString

The domain of the error. Corresponds to the JSON property domain

Returns:

  • (String)


32
33
34
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 32

def domain
  @domain
end

#messageString

A description of the error. Corresponds to the JSON property message

Returns:

  • (String)


37
38
39
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 37

def message
  @message
end

#reasonString

The error code. Corresponds to the JSON property reason

Returns:

  • (String)


42
43
44
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 42

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



49
50
51
52
53
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 49

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