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



617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
# File 'lib/paypal-sdk/invoice/data_types.rb', line 617

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
  array_of :error, ErrorData
end