Class: Google::Apis::ContentV2::OrderLineItem
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrderLineItem
- 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
-
#annotations ⇒ Array<Google::Apis::ContentV2::OrderMerchantProvidedAnnotation>
Annotations that are attached to the line item.
-
#cancellations ⇒ Array<Google::Apis::ContentV2::OrderCancellation>
Cancellations of the line item.
-
#id ⇒ String
The ID of the line item.
-
#price ⇒ Google::Apis::ContentV2::Price
Total price for the line item.
-
#product ⇒ Google::Apis::ContentV2::OrderLineItemProduct
Product data as seen by customer from the time of the order placement.
-
#quantity_canceled ⇒ Fixnum
Number of items canceled.
-
#quantity_delivered ⇒ Fixnum
Number of items delivered.
-
#quantity_ordered ⇒ Fixnum
Number of items ordered.
-
#quantity_pending ⇒ Fixnum
Number of items pending.
-
#quantity_returned ⇒ Fixnum
Number of items returned.
-
#quantity_shipped ⇒ Fixnum
Number of items shipped.
-
#return_info ⇒ Google::Apis::ContentV2::OrderLineItemReturnInfo
Details of the return policy for the line item.
-
#returns ⇒ Array<Google::Apis::ContentV2::OrderReturn>
Returns of the line item.
-
#shipping_details ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetails
Details of the requested shipping for the line item.
-
#tax ⇒ Google::Apis::ContentV2::Price
Total tax amount for the line item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderLineItem
constructor
A new instance of OrderLineItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrderLineItem
Returns a new instance of OrderLineItem
4550 4551 4552 |
# File 'generated/google/apis/content_v2/classes.rb', line 4550 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotations ⇒ Array<Google::Apis::ContentV2::OrderMerchantProvidedAnnotation>
Annotations that are attached to the line item.
Corresponds to the JSON property annotations
4474 4475 4476 |
# File 'generated/google/apis/content_v2/classes.rb', line 4474 def annotations @annotations end |
#cancellations ⇒ Array<Google::Apis::ContentV2::OrderCancellation>
Cancellations of the line item.
Corresponds to the JSON property cancellations
4479 4480 4481 |
# File 'generated/google/apis/content_v2/classes.rb', line 4479 def cancellations @cancellations end |
#id ⇒ String
The ID of the line item.
Corresponds to the JSON property id
4484 4485 4486 |
# File 'generated/google/apis/content_v2/classes.rb', line 4484 def id @id end |
#price ⇒ Google::Apis::ContentV2::Price
Total price for the line item. For example, if two items for $10 are purchased,
the total price will be $20.
Corresponds to the JSON property price
4490 4491 4492 |
# File 'generated/google/apis/content_v2/classes.rb', line 4490 def price @price end |
#product ⇒ Google::Apis::ContentV2::OrderLineItemProduct
Product data as seen by customer from the time of the order placement. Note
that certain attributes values (e.g. title or gtin) might be reformatted and
no longer match values submitted via product feed.
Corresponds to the JSON property product
4497 4498 4499 |
# File 'generated/google/apis/content_v2/classes.rb', line 4497 def product @product end |
#quantity_canceled ⇒ Fixnum
Number of items canceled.
Corresponds to the JSON property quantityCanceled
4502 4503 4504 |
# File 'generated/google/apis/content_v2/classes.rb', line 4502 def quantity_canceled @quantity_canceled end |
#quantity_delivered ⇒ Fixnum
Number of items delivered.
Corresponds to the JSON property quantityDelivered
4507 4508 4509 |
# File 'generated/google/apis/content_v2/classes.rb', line 4507 def quantity_delivered @quantity_delivered end |
#quantity_ordered ⇒ Fixnum
Number of items ordered.
Corresponds to the JSON property quantityOrdered
4512 4513 4514 |
# File 'generated/google/apis/content_v2/classes.rb', line 4512 def quantity_ordered @quantity_ordered end |
#quantity_pending ⇒ Fixnum
Number of items pending.
Corresponds to the JSON property quantityPending
4517 4518 4519 |
# File 'generated/google/apis/content_v2/classes.rb', line 4517 def quantity_pending @quantity_pending end |
#quantity_returned ⇒ Fixnum
Number of items returned.
Corresponds to the JSON property quantityReturned
4522 4523 4524 |
# File 'generated/google/apis/content_v2/classes.rb', line 4522 def quantity_returned @quantity_returned end |
#quantity_shipped ⇒ Fixnum
Number of items shipped.
Corresponds to the JSON property quantityShipped
4527 4528 4529 |
# File 'generated/google/apis/content_v2/classes.rb', line 4527 def quantity_shipped @quantity_shipped end |
#return_info ⇒ Google::Apis::ContentV2::OrderLineItemReturnInfo
Details of the return policy for the line item.
Corresponds to the JSON property returnInfo
4532 4533 4534 |
# File 'generated/google/apis/content_v2/classes.rb', line 4532 def return_info @return_info end |
#returns ⇒ Array<Google::Apis::ContentV2::OrderReturn>
Returns of the line item.
Corresponds to the JSON property returns
4537 4538 4539 |
# File 'generated/google/apis/content_v2/classes.rb', line 4537 def returns @returns end |
#shipping_details ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetails
Details of the requested shipping for the line item.
Corresponds to the JSON property shippingDetails
4542 4543 4544 |
# File 'generated/google/apis/content_v2/classes.rb', line 4542 def shipping_details @shipping_details end |
#tax ⇒ Google::Apis::ContentV2::Price
Total tax amount for the line item. For example, if two items are purchased,
and each have a cost tax of $2, the total tax amount will be $4.
Corresponds to the JSON property tax
4548 4549 4550 |
# File 'generated/google/apis/content_v2/classes.rb', line 4548 def tax @tax end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 |
# File 'generated/google/apis/content_v2/classes.rb', line 4555 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @cancellations = args[:cancellations] if args.key?(:cancellations) @id = args[:id] if args.key?(:id) @price = args[:price] if args.key?(:price) @product = args[:product] if args.key?(:product) @quantity_canceled = args[:quantity_canceled] if args.key?(:quantity_canceled) @quantity_delivered = args[:quantity_delivered] if args.key?(:quantity_delivered) @quantity_ordered = args[:quantity_ordered] if args.key?(:quantity_ordered) @quantity_pending = args[:quantity_pending] if args.key?(:quantity_pending) @quantity_returned = args[:quantity_returned] if args.key?(:quantity_returned) @quantity_shipped = args[:quantity_shipped] if args.key?(:quantity_shipped) @return_info = args[:return_info] if args.key?(:return_info) @returns = args[:returns] if args.key?(:returns) @shipping_details = args[:shipping_details] if args.key?(:shipping_details) @tax = args[:tax] if args.key?(:tax) end |