Class: Google::Apis::ContentV2::DatafeedStatusError

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

Overview

An error occurring in the feed, like "invalid price".

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) ⇒ DatafeedStatusError

Returns a new instance of DatafeedStatusError.



1879
1880
1881
# File 'generated/google/apis/content_v2/classes.rb', line 1879

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

Instance Attribute Details

#codeString

The code of the error, e.g., "validation/invalid_value". Corresponds to the JSON property code

Returns:

  • (String)


1862
1863
1864
# File 'generated/google/apis/content_v2/classes.rb', line 1862

def code
  @code
end

#countString

The number of occurrences of the error in the feed. Corresponds to the JSON property count

Returns:

  • (String)


1867
1868
1869
# File 'generated/google/apis/content_v2/classes.rb', line 1867

def count
  @count
end

#examplesArray<Google::Apis::ContentV2::DatafeedStatusExample>

A list of example occurrences of the error, grouped by product. Corresponds to the JSON property examples



1872
1873
1874
# File 'generated/google/apis/content_v2/classes.rb', line 1872

def examples
  @examples
end

#messageString

The error message, e.g., "Invalid price". Corresponds to the JSON property message

Returns:

  • (String)


1877
1878
1879
# File 'generated/google/apis/content_v2/classes.rb', line 1877

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1884
1885
1886
1887
1888
1889
# File 'generated/google/apis/content_v2/classes.rb', line 1884

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