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
Instance Attribute Summary collapse
-
#destination ⇒ String
The destination the issue applies to.
-
#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
#initialize(**args) ⇒ ProductStatusDataQualityIssue
Returns a new instance of ProductStatusDataQualityIssue
8740 8741 8742 |
# File 'generated/google/apis/content_v2/classes.rb', line 8740 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination ⇒ String
The destination the issue applies to.
Corresponds to the JSON property destination
8698 8699 8700 |
# File 'generated/google/apis/content_v2/classes.rb', line 8698 def destination @destination end |
#detail ⇒ String
A more detailed error string.
Corresponds to the JSON property detail
8703 8704 8705 |
# File 'generated/google/apis/content_v2/classes.rb', line 8703 def detail @detail end |
#fetch_status ⇒ String
The fetch status for landing_page_errors.
Corresponds to the JSON property fetchStatus
8708 8709 8710 |
# File 'generated/google/apis/content_v2/classes.rb', line 8708 def fetch_status @fetch_status end |
#id ⇒ String
The id of the data quality issue.
Corresponds to the JSON property id
8713 8714 8715 |
# File 'generated/google/apis/content_v2/classes.rb', line 8713 def id @id end |
#location ⇒ String
The attribute name that is relevant for the issue.
Corresponds to the JSON property location
8718 8719 8720 |
# File 'generated/google/apis/content_v2/classes.rb', line 8718 def location @location end |
#severity ⇒ String
The severity of the data quality issue.
Corresponds to the JSON property severity
8723 8724 8725 |
# File 'generated/google/apis/content_v2/classes.rb', line 8723 def severity @severity end |
#timestamp ⇒ String
The time stamp of the data quality issue.
Corresponds to the JSON property timestamp
8728 8729 8730 |
# File 'generated/google/apis/content_v2/classes.rb', line 8728 def @timestamp end |
#value_on_landing_page ⇒ String
The value of that attribute that was found on the landing page
Corresponds to the JSON property valueOnLandingPage
8733 8734 8735 |
# File 'generated/google/apis/content_v2/classes.rb', line 8733 def value_on_landing_page @value_on_landing_page end |
#value_provided ⇒ String
The value the attribute had at time of evaluation.
Corresponds to the JSON property valueProvided
8738 8739 8740 |
# File 'generated/google/apis/content_v2/classes.rb', line 8738 def value_provided @value_provided end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 |
# File 'generated/google/apis/content_v2/classes.rb', line 8745 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 |