Class: PayPal::SDK::Invoice::DataTypes::MarkInvoiceAsPaidResponse

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

Overview

The response object for MarkInvoiceAsPaid.

Class Method Summary collapse

Class Method Details

.load_membersObject



866
867
868
869
870
871
872
873
874
875
876
# File 'lib/paypal-sdk/invoice/data_types.rb', line 866

def self.load_members
  include ResponseStatus
  object_of :responseEnvelope, ResponseEnvelope, :required => true
  # The paid invoice ID. 
  object_of :invoiceID, String, :required => true
  # The paid invoice number. 
  object_of :invoiceNumber, String, :required => true
  # The URL which lead merchant to view the invoice details on web. 
  object_of :invoiceURL, String, :required => true
  array_of :error, ErrorData
end