Class: PayPal::SDK::Invoice::DataTypes::GetInvoiceDetailsResponse

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

Overview

The response object for CreateInvoice.

Class Method Summary collapse

Class Method Details

.load_membersObject



756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
# File 'lib/paypal-sdk/invoice/data_types.rb', line 756

def self.load_members
  include ResponseStatus
  object_of :responseEnvelope, ResponseEnvelope, :required => true
  # The requested invoice. 
  object_of :invoice, InvoiceType, :required => true
  # The requested invoice details. 
  object_of :invoiceDetails, InvoiceDetailsType, :required => true
  # The requested invoice payment details. 
  object_of :paymentDetails, PaymentDetailsType
  # The requested invoice refund details. 
  object_of :refundDetails, PaymentRefundDetailsType
  # The URL which lead merchant to view the invoice details on web. 
  object_of :invoiceURL, String, :required => true
  # The URL which lead merchant to view the invoice as the payer would see it. 
  object_of :payerViewURL, String, :required => true
  array_of :error, ErrorData
end