Class: Google::Apis::ContentV2_1::DatafeedStatus

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb

Overview

The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished.

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) ⇒ DatafeedStatus

Returns a new instance of DatafeedStatus



1765
1766
1767
# File 'generated/google/apis/content_v2_1/classes.rb', line 1765

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

Instance Attribute Details

#countryString

The country for which the status is reported, represented as a CLDR territory code. Corresponds to the JSON property country

Returns:

  • (String)


1717
1718
1719
# File 'generated/google/apis/content_v2_1/classes.rb', line 1717

def country
  @country
end

#datafeed_idFixnum

The ID of the feed for which the status is reported. Corresponds to the JSON property datafeedId

Returns:

  • (Fixnum)


1722
1723
1724
# File 'generated/google/apis/content_v2_1/classes.rb', line 1722

def datafeed_id
  @datafeed_id
end

#errorsArray<Google::Apis::ContentV2_1::DatafeedStatusError>

The list of errors occurring in the feed. Corresponds to the JSON property errors



1727
1728
1729
# File 'generated/google/apis/content_v2_1/classes.rb', line 1727

def errors
  @errors
end

#items_totalFixnum

The number of items in the feed that were processed. Corresponds to the JSON property itemsTotal

Returns:

  • (Fixnum)


1732
1733
1734
# File 'generated/google/apis/content_v2_1/classes.rb', line 1732

def items_total
  @items_total
end

#items_validFixnum

The number of items in the feed that were valid. Corresponds to the JSON property itemsValid

Returns:

  • (Fixnum)


1737
1738
1739
# File 'generated/google/apis/content_v2_1/classes.rb', line 1737

def items_valid
  @items_valid
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "content# datafeedStatus". Corresponds to the JSON property kind

Returns:

  • (String)


1743
1744
1745
# File 'generated/google/apis/content_v2_1/classes.rb', line 1743

def kind
  @kind
end

#languageString

The two-letter ISO 639-1 language for which the status is reported. Corresponds to the JSON property language

Returns:

  • (String)


1748
1749
1750
# File 'generated/google/apis/content_v2_1/classes.rb', line 1748

def language
  @language
end

#last_upload_dateString

The last date at which the feed was uploaded. Corresponds to the JSON property lastUploadDate

Returns:

  • (String)


1753
1754
1755
# File 'generated/google/apis/content_v2_1/classes.rb', line 1753

def last_upload_date
  @last_upload_date
end

#processing_statusString

The processing status of the feed. Corresponds to the JSON property processingStatus

Returns:

  • (String)


1758
1759
1760
# File 'generated/google/apis/content_v2_1/classes.rb', line 1758

def processing_status
  @processing_status
end

#warningsArray<Google::Apis::ContentV2_1::DatafeedStatusError>

The list of errors occurring in the feed. Corresponds to the JSON property warnings



1763
1764
1765
# File 'generated/google/apis/content_v2_1/classes.rb', line 1763

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
# File 'generated/google/apis/content_v2_1/classes.rb', line 1770

def update!(**args)
  @country = args[:country] if args.key?(:country)
  @datafeed_id = args[:datafeed_id] if args.key?(:datafeed_id)
  @errors = args[:errors] if args.key?(:errors)
  @items_total = args[:items_total] if args.key?(:items_total)
  @items_valid = args[:items_valid] if args.key?(:items_valid)
  @kind = args[:kind] if args.key?(:kind)
  @language = args[:language] if args.key?(:language)
  @last_upload_date = args[:last_upload_date] if args.key?(:last_upload_date)
  @processing_status = args[:processing_status] if args.key?(:processing_status)
  @warnings = args[:warnings] if args.key?(:warnings)
end