Class: Google::Apis::ContentV2::TestOrder
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::TestOrder
- 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
-
#customer ⇒ Google::Apis::ContentV2::TestOrderCustomer
The details of the customer who placed the order.
-
#enable_orderinvoices ⇒ Boolean
(also: #enable_orderinvoices?)
Whether the orderinvoices service should support this order.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#line_items ⇒ Array<Google::Apis::ContentV2::TestOrderLineItem>
Line items that are ordered.
-
#notification_mode ⇒ String
Determines if test order must be pulled by merchant or pushed to merchant via push integration.
-
#payment_method ⇒ Google::Apis::ContentV2::TestOrderPaymentMethod
The details of the payment method.
-
#predefined_delivery_address ⇒ String
Identifier of one of the predefined delivery addresses for the delivery.
-
#promotions ⇒ Array<Google::Apis::ContentV2::OrderPromotion>
The details of the merchant provided promotions applied to the order.
-
#shipping_cost ⇒ Google::Apis::ContentV2::Price
The total cost of shipping for all items.
-
#shipping_cost_tax ⇒ Google::Apis::ContentV2::Price
The tax for the total shipping cost.
-
#shipping_option ⇒ String
The requested shipping option.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestOrder
constructor
A new instance of TestOrder.
-
#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) ⇒ TestOrder
Returns a new instance of TestOrder
9872 9873 9874 |
# File 'generated/google/apis/content_v2/classes.rb', line 9872 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer ⇒ Google::Apis::ContentV2::TestOrderCustomer
The details of the customer who placed the order.
Corresponds to the JSON property customer
9816 9817 9818 |
# File 'generated/google/apis/content_v2/classes.rb', line 9816 def customer @customer end |
#enable_orderinvoices ⇒ Boolean Also known as: enable_orderinvoices?
Whether the orderinvoices service should support this order.
Corresponds to the JSON property enableOrderinvoices
9821 9822 9823 |
# File 'generated/google/apis/content_v2/classes.rb', line 9821 def enable_orderinvoices @enable_orderinvoices end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
testOrder".
Corresponds to the JSON property kind
9828 9829 9830 |
# File 'generated/google/apis/content_v2/classes.rb', line 9828 def kind @kind end |
#line_items ⇒ Array<Google::Apis::ContentV2::TestOrderLineItem>
Line items that are ordered. At least one line item must be provided.
Corresponds to the JSON property lineItems
9833 9834 9835 |
# File 'generated/google/apis/content_v2/classes.rb', line 9833 def line_items @line_items end |
#notification_mode ⇒ String
Determines if test order must be pulled by merchant or pushed to merchant via
push integration.
Corresponds to the JSON property notificationMode
9839 9840 9841 |
# File 'generated/google/apis/content_v2/classes.rb', line 9839 def notification_mode @notification_mode end |
#payment_method ⇒ Google::Apis::ContentV2::TestOrderPaymentMethod
The details of the payment method.
Corresponds to the JSON property paymentMethod
9844 9845 9846 |
# File 'generated/google/apis/content_v2/classes.rb', line 9844 def payment_method @payment_method end |
#predefined_delivery_address ⇒ String
Identifier of one of the predefined delivery addresses for the delivery.
Corresponds to the JSON property predefinedDeliveryAddress
9849 9850 9851 |
# File 'generated/google/apis/content_v2/classes.rb', line 9849 def predefined_delivery_address @predefined_delivery_address end |
#promotions ⇒ Array<Google::Apis::ContentV2::OrderPromotion>
The details of the merchant provided promotions applied to the order. More
details about the program are here.
Corresponds to the JSON property promotions
9855 9856 9857 |
# File 'generated/google/apis/content_v2/classes.rb', line 9855 def promotions @promotions end |
#shipping_cost ⇒ Google::Apis::ContentV2::Price
The total cost of shipping for all items.
Corresponds to the JSON property shippingCost
9860 9861 9862 |
# File 'generated/google/apis/content_v2/classes.rb', line 9860 def shipping_cost @shipping_cost end |
#shipping_cost_tax ⇒ Google::Apis::ContentV2::Price
The tax for the total shipping cost.
Corresponds to the JSON property shippingCostTax
9865 9866 9867 |
# File 'generated/google/apis/content_v2/classes.rb', line 9865 def shipping_cost_tax @shipping_cost_tax end |
#shipping_option ⇒ String
The requested shipping option.
Corresponds to the JSON property shippingOption
9870 9871 9872 |
# File 'generated/google/apis/content_v2/classes.rb', line 9870 def shipping_option @shipping_option end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 |
# File 'generated/google/apis/content_v2/classes.rb', line 9877 def update!(**args) @customer = args[:customer] if args.key?(:customer) @enable_orderinvoices = args[:enable_orderinvoices] if args.key?(:enable_orderinvoices) @kind = args[:kind] if args.key?(:kind) @line_items = args[:line_items] if args.key?(:line_items) @notification_mode = args[:notification_mode] if args.key?(:notification_mode) @payment_method = args[:payment_method] if args.key?(:payment_method) @predefined_delivery_address = args[:predefined_delivery_address] if args.key?(:predefined_delivery_address) @promotions = args[:promotions] if args.key?(:promotions) @shipping_cost = args[:shipping_cost] if args.key?(:shipping_cost) @shipping_cost_tax = args[:shipping_cost_tax] if args.key?(:shipping_cost_tax) @shipping_option = args[:shipping_option] if args.key?(:shipping_option) end |