Class: Google::Apis::ContentV2::ProductStatusDataQualityIssue
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ProductStatusDataQualityIssue
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb more...
Instance Attribute Summary collapse
-
#detail ⇒ String
A more detailed error string.
-
#fetch_status ⇒ String
The fetch status for landing_page_errors.
-
#id ⇒ String
The id of the data quality issue.
-
#location ⇒ String
The attribute name that is relevant for the issue.
-
#severity ⇒ String
The severity of the data quality issue.
-
#timestamp ⇒ String
The time stamp of the data quality issue.
-
#value_on_landing_page ⇒ String
The value of that attribute that was found on the landing page Corresponds to the JSON property
valueOnLandingPage
. -
#value_provided ⇒ String
The value the attribute had at time of evaluation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductStatusDataQualityIssue
constructor
A new instance of ProductStatusDataQualityIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
permalink #initialize(**args) ⇒ ProductStatusDataQualityIssue
Returns a new instance of ProductStatusDataQualityIssue.
5636 5637 5638 |
# File 'generated/google/apis/content_v2/classes.rb', line 5636 def initialize(**args) update!(**args) end |
Instance Attribute Details
permalink #detail ⇒ String
A more detailed error string.
Corresponds to the JSON property detail
5599 5600 5601 |
# File 'generated/google/apis/content_v2/classes.rb', line 5599 def detail @detail end |
permalink #fetch_status ⇒ String
The fetch status for landing_page_errors.
Corresponds to the JSON property fetchStatus
5604 5605 5606 |
# File 'generated/google/apis/content_v2/classes.rb', line 5604 def fetch_status @fetch_status end |
permalink #id ⇒ String
The id of the data quality issue.
Corresponds to the JSON property id
5609 5610 5611 |
# File 'generated/google/apis/content_v2/classes.rb', line 5609 def id @id end |
permalink #location ⇒ String
The attribute name that is relevant for the issue.
Corresponds to the JSON property location
5614 5615 5616 |
# File 'generated/google/apis/content_v2/classes.rb', line 5614 def location @location end |
permalink #severity ⇒ String
The severity of the data quality issue.
Corresponds to the JSON property severity
5619 5620 5621 |
# File 'generated/google/apis/content_v2/classes.rb', line 5619 def severity @severity end |
permalink #timestamp ⇒ String
The time stamp of the data quality issue.
Corresponds to the JSON property timestamp
5624 5625 5626 |
# File 'generated/google/apis/content_v2/classes.rb', line 5624 def @timestamp end |
permalink #value_on_landing_page ⇒ String
The value of that attribute that was found on the landing page
Corresponds to the JSON property valueOnLandingPage
5629 5630 5631 |
# File 'generated/google/apis/content_v2/classes.rb', line 5629 def value_on_landing_page @value_on_landing_page end |
permalink #value_provided ⇒ String
The value the attribute had at time of evaluation.
Corresponds to the JSON property valueProvided
5634 5635 5636 |
# File 'generated/google/apis/content_v2/classes.rb', line 5634 def value_provided @value_provided end |
Instance Method Details
permalink #update!(**args) ⇒ Object
Update properties of this object
5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 |
# File 'generated/google/apis/content_v2/classes.rb', line 5641 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 |