Class: Google::Apis::ContentV2_1::OrdersCustomBatchRequestEntryRefundItemShipping

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OrdersCustomBatchRequestEntryRefundItemShipping

Returns a new instance of OrdersCustomBatchRequestEntryRefundItemShipping.



7671
7672
7673
# File 'lib/google/apis/content_v2_1/classes.rb', line 7671

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

Instance Attribute Details

#amountGoogle::Apis::ContentV2_1::Price

The amount that is refunded. If this is not the first refund for the shipment, this should be the newly refunded amount. Corresponds to the JSON property amount



7662
7663
7664
# File 'lib/google/apis/content_v2_1/classes.rb', line 7662

def amount
  @amount
end

#full_refundBoolean Also known as: full_refund?

If set to true, all shipping costs for the order will be refunded. If this is true, amount should not be provided and will be ignored. Corresponds to the JSON property fullRefund

Returns:

  • (Boolean)


7668
7669
7670
# File 'lib/google/apis/content_v2_1/classes.rb', line 7668

def full_refund
  @full_refund
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7676
7677
7678
7679
# File 'lib/google/apis/content_v2_1/classes.rb', line 7676

def update!(**args)
  @amount = args[:amount] if args.key?(:amount)
  @full_refund = args[:full_refund] if args.key?(:full_refund)
end