Class: Google::Apis::ContentV2::TestOrderLineItem
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::TestOrderLineItem
- 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
-
#product ⇒ Google::Apis::ContentV2::TestOrderLineItemProduct
Required.
-
#quantity_ordered ⇒ Fixnum
Required.
-
#return_info ⇒ Google::Apis::ContentV2::OrderLineItemReturnInfo
Required.
-
#shipping_details ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetails
Required.
-
#unit_tax ⇒ Google::Apis::ContentV2::Price
Deprecated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestOrderLineItem
constructor
A new instance of TestOrderLineItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TestOrderLineItem
Returns a new instance of TestOrderLineItem.
11119 11120 11121 |
# File 'generated/google/apis/content_v2/classes.rb', line 11119 def initialize(**args) update!(**args) end |
Instance Attribute Details
#product ⇒ Google::Apis::ContentV2::TestOrderLineItemProduct
Required. Product data from the time of the order placement.
Corresponds to the JSON property product
11097 11098 11099 |
# File 'generated/google/apis/content_v2/classes.rb', line 11097 def product @product end |
#quantity_ordered ⇒ Fixnum
Required. Number of items ordered.
Corresponds to the JSON property quantityOrdered
11102 11103 11104 |
# File 'generated/google/apis/content_v2/classes.rb', line 11102 def quantity_ordered @quantity_ordered end |
#return_info ⇒ Google::Apis::ContentV2::OrderLineItemReturnInfo
Required. Details of the return policy for the line item.
Corresponds to the JSON property returnInfo
11107 11108 11109 |
# File 'generated/google/apis/content_v2/classes.rb', line 11107 def return_info @return_info end |
#shipping_details ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetails
Required. Details of the requested shipping for the line item.
Corresponds to the JSON property shippingDetails
11112 11113 11114 |
# File 'generated/google/apis/content_v2/classes.rb', line 11112 def shipping_details @shipping_details end |
#unit_tax ⇒ Google::Apis::ContentV2::Price
Deprecated. Ignored if provided.
Corresponds to the JSON property unitTax
11117 11118 11119 |
# File 'generated/google/apis/content_v2/classes.rb', line 11117 def unit_tax @unit_tax end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11124 11125 11126 11127 11128 11129 11130 |
# File 'generated/google/apis/content_v2/classes.rb', line 11124 def update!(**args) @product = args[:product] if args.key?(:product) @quantity_ordered = args[:quantity_ordered] if args.key?(:quantity_ordered) @return_info = args[:return_info] if args.key?(:return_info) @shipping_details = args[:shipping_details] if args.key?(:shipping_details) @unit_tax = args[:unit_tax] if args.key?(:unit_tax) end |