Class: PayPal::SDK::Invoice::DataTypes::SendInvoiceResponse

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

Overview

The response object for SendInvoice.

Class Method Summary collapse

Class Method Details

.load_membersObject



610
611
612
613
614
615
616
617
618
619
620
# File 'lib/paypal-sdk/invoice/data_types.rb', line 610

def self.load_members
  include ResponseStatus
  object_of :responseEnvelope, ResponseEnvelope, :required => true
  # The sent invoice's ID. 
  object_of :invoiceID, String, :required => true
  # 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