Class: Google::Apis::ContentV2_1::Datafeed
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::Datafeed
- 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
Datafeed configuration data.
Instance Attribute Summary collapse
-
#attribute_language ⇒ String
The two-letter ISO 639-1 language in which the attributes are defined in the data feed.
-
#content_type ⇒ String
Required.
-
#fetch_schedule ⇒ Google::Apis::ContentV2_1::DatafeedFetchSchedule
The required fields vary based on the frequency of fetching.
-
#file_name ⇒ String
Required.
-
#format ⇒ Google::Apis::ContentV2_1::DatafeedFormat
Format of the feed file.
-
#id ⇒ Fixnum
Required for update.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#name ⇒ String
Required for insert.
-
#targets ⇒ Array<Google::Apis::ContentV2_1::DatafeedTarget>
The targets this feed should apply to (country, language, destinations).
Instance Method Summary collapse
-
#initialize(**args) ⇒ Datafeed
constructor
A new instance of Datafeed.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Datafeed
Returns a new instance of Datafeed.
1843 1844 1845 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1843 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribute_language ⇒ String
The two-letter ISO 639-1 language in which the attributes are defined in the
data feed.
Corresponds to the JSON property attributeLanguage
1795 1796 1797 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1795 def attribute_language @attribute_language end |
#content_type ⇒ String
Required. The type of data feed. For product inventory feeds, only feeds for
local stores, not online stores, are supported. Acceptable values are: - "
local products
" - "product inventory
" - "products
"
Corresponds to the JSON property contentType
1802 1803 1804 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1802 def content_type @content_type end |
#fetch_schedule ⇒ Google::Apis::ContentV2_1::DatafeedFetchSchedule
The required fields vary based on the frequency of fetching. For a monthly
fetch schedule, day_of_month and hour are required. For a weekly fetch
schedule, weekday and hour are required. For a daily fetch schedule, only hour
is required.
Corresponds to the JSON property fetchSchedule
1810 1811 1812 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1810 def fetch_schedule @fetch_schedule end |
#file_name ⇒ String
Required. The filename of the feed. All feeds must have a unique file name.
Corresponds to the JSON property fileName
1815 1816 1817 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1815 def file_name @file_name end |
#format ⇒ Google::Apis::ContentV2_1::DatafeedFormat
Format of the feed file.
Corresponds to the JSON property format
1820 1821 1822 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1820 def format @format end |
#id ⇒ Fixnum
Required for update. The ID of the data feed.
Corresponds to the JSON property id
1825 1826 1827 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1825 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
datafeed
"
Corresponds to the JSON property kind
1831 1832 1833 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1831 def kind @kind end |
#name ⇒ String
Required for insert. A descriptive name of the data feed.
Corresponds to the JSON property name
1836 1837 1838 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1836 def name @name end |
#targets ⇒ Array<Google::Apis::ContentV2_1::DatafeedTarget>
The targets this feed should apply to (country, language, destinations).
Corresponds to the JSON property targets
1841 1842 1843 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1841 def targets @targets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1848 def update!(**args) @attribute_language = args[:attribute_language] if args.key?(:attribute_language) @content_type = args[:content_type] if args.key?(:content_type) @fetch_schedule = args[:fetch_schedule] if args.key?(:fetch_schedule) @file_name = args[:file_name] if args.key?(:file_name) @format = args[:format] if args.key?(:format) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @targets = args[:targets] if args.key?(:targets) end |