Class: Google::Apis::ContentV2_1::LocalInventory

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

Local inventory resource. For accepted attribute values, see the local product inventory feed specification.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LocalInventory

Returns a new instance of LocalInventory.



4685
4686
4687
# File 'lib/google/apis/content_v2_1/classes.rb', line 4685

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

Instance Attribute Details

#availabilityString

Availability of the product. For accepted attribute values, see the local product inventory feed specification. Corresponds to the JSON property availability

Returns:

  • (String)


4632
4633
4634
# File 'lib/google/apis/content_v2_1/classes.rb', line 4632

def availability
  @availability
end

#instore_product_locationString

In-store product location. Corresponds to the JSON property instoreProductLocation

Returns:

  • (String)


4637
4638
4639
# File 'lib/google/apis/content_v2_1/classes.rb', line 4637

def instore_product_location
  @instore_product_location
end

#kindString

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

Returns:

  • (String)


4643
4644
4645
# File 'lib/google/apis/content_v2_1/classes.rb', line 4643

def kind
  @kind
end

#pickup_methodString

Supported pickup method for this offer. Unless the value is "not supported", this field must be submitted together with pickupSla. For accepted attribute values, see the local product inventory feed specification. Corresponds to the JSON property pickupMethod

Returns:

  • (String)


4650
4651
4652
# File 'lib/google/apis/content_v2_1/classes.rb', line 4650

def pickup_method
  @pickup_method
end

#pickup_slaString

Expected date that an order will be ready for pickup relative to the order date. Must be submitted together with pickupMethod. For accepted attribute values, see the local product inventory feed specification. Corresponds to the JSON property pickupSla

Returns:

  • (String)


4657
4658
4659
# File 'lib/google/apis/content_v2_1/classes.rb', line 4657

def pickup_sla
  @pickup_sla
end

#priceGoogle::Apis::ContentV2_1::Price

Price of the product. Corresponds to the JSON property price



4662
4663
4664
# File 'lib/google/apis/content_v2_1/classes.rb', line 4662

def price
  @price
end

#quantityFixnum

Quantity of the product. Must be nonnegative. Corresponds to the JSON property quantity

Returns:

  • (Fixnum)


4667
4668
4669
# File 'lib/google/apis/content_v2_1/classes.rb', line 4667

def quantity
  @quantity
end

#sale_priceGoogle::Apis::ContentV2_1::Price

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



4672
4673
4674
# File 'lib/google/apis/content_v2_1/classes.rb', line 4672

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 may be specified as 'null' if undecided. Corresponds to the JSON property salePriceEffectiveDate

Returns:

  • (String)


4678
4679
4680
# File 'lib/google/apis/content_v2_1/classes.rb', line 4678

def sale_price_effective_date
  @sale_price_effective_date
end

#store_codeString

Required. Store code of this local inventory resource. Corresponds to the JSON property storeCode

Returns:

  • (String)


4683
4684
4685
# File 'lib/google/apis/content_v2_1/classes.rb', line 4683

def store_code
  @store_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
# File 'lib/google/apis/content_v2_1/classes.rb', line 4690

def update!(**args)
  @availability = args[:availability] if args.key?(:availability)
  @instore_product_location = args[:instore_product_location] if args.key?(:instore_product_location)
  @kind = args[:kind] if args.key?(:kind)
  @pickup_method = args[:pickup_method] if args.key?(:pickup_method)
  @pickup_sla = args[:pickup_sla] if args.key?(:pickup_sla)
  @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)
  @store_code = args[:store_code] if args.key?(:store_code)
end