class Google::Apis::ContentV2::ProductStatusDataQualityIssue
Attributes
destination[RW]
Corresponds to the JSON property `destination` @return [String]
detail[RW]
Corresponds to the JSON property `detail` @return [String]
fetch_status[RW]
Corresponds to the JSON property `fetchStatus` @return [String]
id[RW]
Corresponds to the JSON property `id` @return [String]
location[RW]
Corresponds to the JSON property `location` @return [String]
severity[RW]
Corresponds to the JSON property `severity` @return [String]
timestamp[RW]
Corresponds to the JSON property `timestamp` @return [String]
value_on_landing_page[RW]
Corresponds to the JSON property `valueOnLandingPage` @return [String]
value_provided[RW]
Corresponds to the JSON property `valueProvided` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 9673 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 9678 def update!(**args) @destination = args[:destination] if args.key?(:destination) @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