Class: PayPal::SDK::Invoice::DataTypes::PaymentRefundDetailsType

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/invoice/data_types.rb

Overview

Payment refund details about the invoice.

Class Method Summary collapse

Class Method Details

.load_membersObject



941
942
943
944
945
946
947
948
949
950
951
952
# File 'lib/paypal-sdk/invoice/data_types.rb', line 941

def self.load_members
  # True if the invoice was refunded using PayPal.  
  object_of :viaPayPal, Boolean, :required => true
  # Other payment refund details.  
  object_of :paypalPayment, PayPalPaymentRefundDetailsType
  # Other payment refund details.  
  object_of :paypalPayments, PayPalPaymentRefundDetailsListType
  # details.  
  object_of :otherPayment, OtherPaymentRefundDetailsType
  # details.  
  object_of :otherPayments, OtherPaymentRefundDetailsListType
end