class Google::Apis::ContentV2::DatafeedStatusExample
An example occurrence for a particular error.
Attributes
item_id[RW]
The ID of the example item. Corresponds to the JSON property `itemId` @return [String]
line_number[RW]
Line number in the data feed where the example is found. Corresponds to the JSON property `lineNumber` @return [Fixnum]
value[RW]
The problematic value. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 2116 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 2121 def update!(**args) @item_id = args[:item_id] if args.key?(:item_id) @line_number = args[:line_number] if args.key?(:line_number) @value = args[:value] if args.key?(:value) end