Class: Google::Apis::ContentV2::ProductStatusDataQualityIssue
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ProductStatusDataQualityIssue
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#destination ⇒ String
Corresponds to the JSON property
destination. -
#detail ⇒ String
Corresponds to the JSON property
detail. -
#fetch_status ⇒ String
Corresponds to the JSON property
fetchStatus. -
#id ⇒ String
Corresponds to the JSON property
id. -
#location ⇒ String
Corresponds to the JSON property
location. -
#severity ⇒ String
Corresponds to the JSON property
severity. -
#timestamp ⇒ String
Corresponds to the JSON property
timestamp. -
#value_on_landing_page ⇒ String
Corresponds to the JSON property
valueOnLandingPage. -
#value_provided ⇒ String
Corresponds to the JSON property
valueProvided.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductStatusDataQualityIssue
constructor
A new instance of ProductStatusDataQualityIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProductStatusDataQualityIssue
Returns a new instance of ProductStatusDataQualityIssue.
9727 9728 9729 |
# File 'lib/google/apis/content_v2/classes.rb', line 9727 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination ⇒ String
Corresponds to the JSON property destination
9685 9686 9687 |
# File 'lib/google/apis/content_v2/classes.rb', line 9685 def destination @destination end |
#detail ⇒ String
Corresponds to the JSON property detail
9690 9691 9692 |
# File 'lib/google/apis/content_v2/classes.rb', line 9690 def detail @detail end |
#fetch_status ⇒ String
Corresponds to the JSON property fetchStatus
9695 9696 9697 |
# File 'lib/google/apis/content_v2/classes.rb', line 9695 def fetch_status @fetch_status end |
#id ⇒ String
Corresponds to the JSON property id
9700 9701 9702 |
# File 'lib/google/apis/content_v2/classes.rb', line 9700 def id @id end |
#location ⇒ String
Corresponds to the JSON property location
9705 9706 9707 |
# File 'lib/google/apis/content_v2/classes.rb', line 9705 def location @location end |
#severity ⇒ String
Corresponds to the JSON property severity
9710 9711 9712 |
# File 'lib/google/apis/content_v2/classes.rb', line 9710 def severity @severity end |
#timestamp ⇒ String
Corresponds to the JSON property timestamp
9715 9716 9717 |
# File 'lib/google/apis/content_v2/classes.rb', line 9715 def @timestamp end |
#value_on_landing_page ⇒ String
Corresponds to the JSON property valueOnLandingPage
9720 9721 9722 |
# File 'lib/google/apis/content_v2/classes.rb', line 9720 def value_on_landing_page @value_on_landing_page end |
#value_provided ⇒ String
Corresponds to the JSON property valueProvided
9725 9726 9727 |
# File 'lib/google/apis/content_v2/classes.rb', line 9725 def value_provided @value_provided end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 |
# File 'lib/google/apis/content_v2/classes.rb', line 9732 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 |