Class: Google::Apis::ContentV2_1::Errors

Inherits:
Object
  • Object
show all
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

A list of errors returned by a failed batch entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Errors

Returns a new instance of Errors.



4744
4745
4746
# File 'lib/google/apis/content_v2_1/classes.rb', line 4744

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

Instance Attribute Details

#codeFixnum

The HTTP status of the first error in errors. Corresponds to the JSON property code

Returns:

  • (Fixnum)


4732
4733
4734
# File 'lib/google/apis/content_v2_1/classes.rb', line 4732

def code
  @code
end

#errorsArray<Google::Apis::ContentV2_1::Error>

A list of errors. Corresponds to the JSON property errors



4737
4738
4739
# File 'lib/google/apis/content_v2_1/classes.rb', line 4737

def errors
  @errors
end

#messageString

The message of the first error in errors. Corresponds to the JSON property message

Returns:

  • (String)


4742
4743
4744
# File 'lib/google/apis/content_v2_1/classes.rb', line 4742

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4749
4750
4751
4752
4753
# File 'lib/google/apis/content_v2_1/classes.rb', line 4749

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @errors = args[:errors] if args.key?(:errors)
  @message = args[:message] if args.key?(:message)
end