Class: Google::Apis::ContentV2::ProductStatusDataQualityIssue

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ProductStatusDataQualityIssue

Returns a new instance of ProductStatusDataQualityIssue



8136
8137
8138
# File 'generated/google/apis/content_v2/classes.rb', line 8136

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#destinationString

The destination the issue applies to. Corresponds to the JSON property destination

Returns:

  • (String)


8094
8095
8096
# File 'generated/google/apis/content_v2/classes.rb', line 8094

def destination
  @destination
end

#detailString

A more detailed error string. Corresponds to the JSON property detail

Returns:

  • (String)


8099
8100
8101
# File 'generated/google/apis/content_v2/classes.rb', line 8099

def detail
  @detail
end

#fetch_statusString

The fetch status for landing_page_errors. Corresponds to the JSON property fetchStatus

Returns:

  • (String)


8104
8105
8106
# File 'generated/google/apis/content_v2/classes.rb', line 8104

def fetch_status
  @fetch_status
end

#idString

The id of the data quality issue. Corresponds to the JSON property id

Returns:

  • (String)


8109
8110
8111
# File 'generated/google/apis/content_v2/classes.rb', line 8109

def id
  @id
end

#locationString

The attribute name that is relevant for the issue. Corresponds to the JSON property location

Returns:

  • (String)


8114
8115
8116
# File 'generated/google/apis/content_v2/classes.rb', line 8114

def location
  @location
end

#severityString

The severity of the data quality issue. Corresponds to the JSON property severity

Returns:

  • (String)


8119
8120
8121
# File 'generated/google/apis/content_v2/classes.rb', line 8119

def severity
  @severity
end

#timestampString

The time stamp of the data quality issue. Corresponds to the JSON property timestamp

Returns:

  • (String)


8124
8125
8126
# File 'generated/google/apis/content_v2/classes.rb', line 8124

def timestamp
  @timestamp
end

#value_on_landing_pageString

The value of that attribute that was found on the landing page Corresponds to the JSON property valueOnLandingPage

Returns:

  • (String)


8129
8130
8131
# File 'generated/google/apis/content_v2/classes.rb', line 8129

def value_on_landing_page
  @value_on_landing_page
end

#value_providedString

The value the attribute had at time of evaluation. Corresponds to the JSON property valueProvided

Returns:

  • (String)


8134
8135
8136
# File 'generated/google/apis/content_v2/classes.rb', line 8134

def value_provided
  @value_provided
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
# File 'generated/google/apis/content_v2/classes.rb', line 8141

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