Class: Google::Apis::ContentV2_1::Datafeed

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

Overview

Datafeed configuration data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Datafeed

Returns a new instance of Datafeed.



2314
2315
2316
# File 'lib/google/apis/content_v2_1/classes.rb', line 2314

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

Instance Attribute Details

#attribute_languageString

The two-letter ISO 639-1 language in which the attributes are defined in the data feed. Corresponds to the JSON property attributeLanguage

Returns:

  • (String)


2266
2267
2268
# File 'lib/google/apis/content_v2_1/classes.rb', line 2266

def attribute_language
  @attribute_language
end

#content_typeString

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

Returns:

  • (String)


2273
2274
2275
# File 'lib/google/apis/content_v2_1/classes.rb', line 2273

def content_type
  @content_type
end

#fetch_scheduleGoogle::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



2281
2282
2283
# File 'lib/google/apis/content_v2_1/classes.rb', line 2281

def fetch_schedule
  @fetch_schedule
end

#file_nameString

Required. The filename of the feed. All feeds must have a unique file name. Corresponds to the JSON property fileName

Returns:

  • (String)


2286
2287
2288
# File 'lib/google/apis/content_v2_1/classes.rb', line 2286

def file_name
  @file_name
end

#formatGoogle::Apis::ContentV2_1::DatafeedFormat

Format of the feed file. Corresponds to the JSON property format



2291
2292
2293
# File 'lib/google/apis/content_v2_1/classes.rb', line 2291

def format
  @format
end

#idFixnum

Required for update. The ID of the data feed. Corresponds to the JSON property id

Returns:

  • (Fixnum)


2296
2297
2298
# File 'lib/google/apis/content_v2_1/classes.rb', line 2296

def id
  @id
end

#kindString

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

Returns:

  • (String)


2302
2303
2304
# File 'lib/google/apis/content_v2_1/classes.rb', line 2302

def kind
  @kind
end

#nameString

Required for insert. A descriptive name of the data feed. Corresponds to the JSON property name

Returns:

  • (String)


2307
2308
2309
# File 'lib/google/apis/content_v2_1/classes.rb', line 2307

def name
  @name
end

#targetsArray<Google::Apis::ContentV2_1::DatafeedTarget>

The targets this feed should apply to (country, language, destinations). Corresponds to the JSON property targets



2312
2313
2314
# File 'lib/google/apis/content_v2_1/classes.rb', line 2312

def targets
  @targets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
# File 'lib/google/apis/content_v2_1/classes.rb', line 2319

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