Class: Google::Apis::ContentV2_1::OrderTrackingSignalLineItemDetails

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 line items of the order.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OrderTrackingSignalLineItemDetails

Returns a new instance of OrderTrackingSignalLineItemDetails.



5992
5993
5994
# File 'generated/google/apis/content_v2_1/classes.rb', line 5992

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

Instance Attribute Details

#gtinString

The Global Trade Item Number. Corresponds to the JSON property gtin

Returns:

  • (String)


5969
5970
5971
# File 'generated/google/apis/content_v2_1/classes.rb', line 5969

def gtin
  @gtin
end

#line_item_idString

Required. The ID for this line item. Corresponds to the JSON property lineItemId

Returns:

  • (String)


5974
5975
5976
# File 'generated/google/apis/content_v2_1/classes.rb', line 5974

def line_item_id
  @line_item_id
end

#mpnString

The manufacturer part number. Corresponds to the JSON property mpn

Returns:

  • (String)


5979
5980
5981
# File 'generated/google/apis/content_v2_1/classes.rb', line 5979

def mpn
  @mpn
end

#product_idString

Required. The Content API REST ID of the product, in the form channel: contentLanguage:targetCountry:offerId. Corresponds to the JSON property productId

Returns:

  • (String)


5985
5986
5987
# File 'generated/google/apis/content_v2_1/classes.rb', line 5985

def product_id
  @product_id
end

#quantityFixnum

Required. The quantity of the line item in the order. Corresponds to the JSON property quantity

Returns:

  • (Fixnum)


5990
5991
5992
# File 'generated/google/apis/content_v2_1/classes.rb', line 5990

def quantity
  @quantity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5997
5998
5999
6000
6001
6002
6003
# File 'generated/google/apis/content_v2_1/classes.rb', line 5997

def update!(**args)
  @gtin = args[:gtin] if args.key?(:gtin)
  @line_item_id = args[:line_item_id] if args.key?(:line_item_id)
  @mpn = args[:mpn] if args.key?(:mpn)
  @product_id = args[:product_id] if args.key?(:product_id)
  @quantity = args[:quantity] if args.key?(:quantity)
end