Class: Google::Apis::ContentV2sandbox::TestOrderLineItem

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2sandbox/classes.rb,
generated/google/apis/content_v2sandbox/representations.rb,
generated/google/apis/content_v2sandbox/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) ⇒ TestOrderLineItem

Returns a new instance of TestOrderLineItem



3795
3796
3797
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3795

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

Instance Attribute Details

#productGoogle::Apis::ContentV2sandbox::TestOrderLineItemProduct

Product data from the time of the order placement. Corresponds to the JSON property product



3773
3774
3775
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3773

def product
  @product
end

#quantity_orderedFixnum

Number of items ordered. Corresponds to the JSON property quantityOrdered

Returns:

  • (Fixnum)


3778
3779
3780
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3778

def quantity_ordered
  @quantity_ordered
end

#return_infoGoogle::Apis::ContentV2sandbox::OrderLineItemReturnInfo

Details of the return policy for the line item. Corresponds to the JSON property returnInfo



3783
3784
3785
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3783

def return_info
  @return_info
end

#shipping_detailsGoogle::Apis::ContentV2sandbox::OrderLineItemShippingDetails

Details of the requested shipping for the line item. Corresponds to the JSON property shippingDetails



3788
3789
3790
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3788

def shipping_details
  @shipping_details
end

#unit_taxGoogle::Apis::ContentV2sandbox::Price

Unit tax for the line item. Corresponds to the JSON property unitTax



3793
3794
3795
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3793

def unit_tax
  @unit_tax
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3800
3801
3802
3803
3804
3805
3806
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3800

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