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
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.
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
9273 9274 9275 |
# File 'generated/google/apis/content_v2/classes.rb', line 9273 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination ⇒ String
Corresponds to the JSON property destination
9231 9232 9233 |
# File 'generated/google/apis/content_v2/classes.rb', line 9231 def destination @destination end |
#detail ⇒ String
Corresponds to the JSON property detail
9236 9237 9238 |
# File 'generated/google/apis/content_v2/classes.rb', line 9236 def detail @detail end |
#fetch_status ⇒ String
Corresponds to the JSON property fetchStatus
9241 9242 9243 |
# File 'generated/google/apis/content_v2/classes.rb', line 9241 def fetch_status @fetch_status end |
#id ⇒ String
Corresponds to the JSON property id
9246 9247 9248 |
# File 'generated/google/apis/content_v2/classes.rb', line 9246 def id @id end |
#location ⇒ String
Corresponds to the JSON property location
9251 9252 9253 |
# File 'generated/google/apis/content_v2/classes.rb', line 9251 def location @location end |
#severity ⇒ String
Corresponds to the JSON property severity
9256 9257 9258 |
# File 'generated/google/apis/content_v2/classes.rb', line 9256 def severity @severity end |
#timestamp ⇒ String
Corresponds to the JSON property timestamp
9261 9262 9263 |
# File 'generated/google/apis/content_v2/classes.rb', line 9261 def @timestamp end |
#value_on_landing_page ⇒ String
Corresponds to the JSON property valueOnLandingPage
9266 9267 9268 |
# File 'generated/google/apis/content_v2/classes.rb', line 9266 def value_on_landing_page @value_on_landing_page end |
#value_provided ⇒ String
Corresponds to the JSON property valueProvided
9271 9272 9273 |
# File 'generated/google/apis/content_v2/classes.rb', line 9271 def value_provided @value_provided end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 |
# File 'generated/google/apis/content_v2/classes.rb', line 9278 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 |