Class: Google::Apis::ContentV2::Inventory

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

Returns a new instance of Inventory



2275
2276
2277
# File 'generated/google/apis/content_v2/classes.rb', line 2275

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

Instance Attribute Details

#availabilityString

The availability of the product. Corresponds to the JSON property availability

Returns:

  • (String)


2220
2221
2222
# File 'generated/google/apis/content_v2/classes.rb', line 2220

def availability
  @availability
end

#installmentGoogle::Apis::ContentV2::Installment

Number and amount of installments to pay for an item. Brazil only. Corresponds to the JSON property installment



2225
2226
2227
# File 'generated/google/apis/content_v2/classes.rb', line 2225

def installment
  @installment
end

#kindString

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

Returns:

  • (String)


2231
2232
2233
# File 'generated/google/apis/content_v2/classes.rb', line 2231

def kind
  @kind
end

#loyalty_pointsGoogle::Apis::ContentV2::LoyaltyPoints

Loyalty points that users receive after purchasing the item. Japan only. Corresponds to the JSON property loyaltyPoints



2236
2237
2238
# File 'generated/google/apis/content_v2/classes.rb', line 2236

def loyalty_points
  @loyalty_points
end

#pickupGoogle::Apis::ContentV2::InventoryPickup

Store pickup information. Only supported for local inventory. Not setting pickup means "don't update" while setting it to the empty value (`in JSON) means "delete". Otherwise, pickupMethod and pickupSla must be set together, unless pickupMethod is "not supported". Corresponds to the JSON propertypickup`



2244
2245
2246
# File 'generated/google/apis/content_v2/classes.rb', line 2244

def pickup
  @pickup
end

#priceGoogle::Apis::ContentV2::Price

The price of the product. Corresponds to the JSON property price



2249
2250
2251
# File 'generated/google/apis/content_v2/classes.rb', line 2249

def price
  @price
end

#quantityFixnum

The quantity of the product. Must be equal to or greater than zero. Supported only for local products. Corresponds to the JSON property quantity

Returns:

  • (Fixnum)


2255
2256
2257
# File 'generated/google/apis/content_v2/classes.rb', line 2255

def quantity
  @quantity
end

#sale_priceGoogle::Apis::ContentV2::Price

The sale price of the product. Mandatory if sale_price_effective_date is defined. Corresponds to the JSON property salePrice



2261
2262
2263
# File 'generated/google/apis/content_v2/classes.rb', line 2261

def sale_price
  @sale_price
end

#sale_price_effective_dateString

A date range represented by a pair of ISO 8601 dates separated by a space, comma, or slash. Both dates might be specified as 'null' if undecided. Corresponds to the JSON property salePriceEffectiveDate

Returns:

  • (String)


2267
2268
2269
# File 'generated/google/apis/content_v2/classes.rb', line 2267

def sale_price_effective_date
  @sale_price_effective_date
end

#sell_on_google_quantityFixnum

The quantity of the product that is reserved for sell-on-google ads. Supported only for online products. Corresponds to the JSON property sellOnGoogleQuantity

Returns:

  • (Fixnum)


2273
2274
2275
# File 'generated/google/apis/content_v2/classes.rb', line 2273

def sell_on_google_quantity
  @sell_on_google_quantity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
# File 'generated/google/apis/content_v2/classes.rb', line 2280

def update!(**args)
  @availability = args[:availability] if args.key?(:availability)
  @installment = args[:installment] if args.key?(:installment)
  @kind = args[:kind] if args.key?(:kind)
  @loyalty_points = args[:loyalty_points] if args.key?(:loyalty_points)
  @pickup = args[:pickup] if args.key?(:pickup)
  @price = args[:price] if args.key?(:price)
  @quantity = args[:quantity] if args.key?(:quantity)
  @sale_price = args[:sale_price] if args.key?(:sale_price)
  @sale_price_effective_date = args[:sale_price_effective_date] if args.key?(:sale_price_effective_date)
  @sell_on_google_quantity = args[:sell_on_google_quantity] if args.key?(:sell_on_google_quantity)
end