class Google::Apis::ContentV2::ProductStatusDataQualityIssue

Attributes

detail[RW]

A more detailed error string. Corresponds to the JSON property `detail` @return [String]

fetch_status[RW]

The fetch status for landing_page_errors. Corresponds to the JSON property `fetchStatus` @return [String]

id[RW]

The id of the data quality issue. Corresponds to the JSON property `id` @return [String]

location[RW]

The attribute name that is relevant for the issue. Corresponds to the JSON property `location` @return [String]

severity[RW]

The severity of the data quality issue. Corresponds to the JSON property `severity` @return [String]

timestamp[RW]

The time stamp of the data quality issue. Corresponds to the JSON property `timestamp` @return [String]

value_on_landing_page[RW]

The value of that attribute that was found on the landing page Corresponds to the JSON property `valueOnLandingPage` @return [String]

value_provided[RW]

The value the attribute had at time of evaluation. Corresponds to the JSON property `valueProvided` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/content_v2/classes.rb, line 5347
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/content_v2/classes.rb, line 5352
def update!(**args)
  @detail = args[:detail] if args.key?(:detail)
  @fetch_status = args[:fetch_status] if args.key?(:fetch_status)
  @id = args[:id] if args.key?(:id)
  @location = args[:location] if args.key?(:location)
  @severity = args[:severity] if args.key?(:severity)
  @timestamp = args[:timestamp] if args.key?(:timestamp)
  @value_on_landing_page = args[:value_on_landing_page] if args.key?(:value_on_landing_page)
  @value_provided = args[:value_provided] if args.key?(:value_provided)
end