class Google::Apis::ContentV2::ProductStatusDataQualityIssue
Attributes
A more detailed error string. Corresponds to the JSON property `detail` @return [String]
The fetch status for landing_page_errors. Corresponds to the JSON property `fetchStatus` @return [String]
The id of the data quality issue. Corresponds to the JSON property `id` @return [String]
The attribute name that is relevant for the issue. Corresponds to the JSON property `location` @return [String]
The severity of the data quality issue. Corresponds to the JSON property `severity` @return [String]
The time stamp of the data quality issue. Corresponds to the JSON property `timestamp` @return [String]
The value of that attribute that was found on the landing page Corresponds to the JSON property `valueOnLandingPage` @return [String]
The value the attribute had at time of evaluation. Corresponds to the JSON property `valueProvided` @return [String]
Public Class Methods
# File generated/google/apis/content_v2/classes.rb, line 5347 def initialize(**args) update!(**args) end
Public Instance Methods
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