Class: PayPal::SDK::Invoice::DataTypes::MarkInvoiceAsUnpaidResponse

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

Overview

The response object for MarkInvoiceAsUnpaid.

Class Method Summary collapse

Class Method Details

.load_membersObject



781
782
783
784
785
786
787
788
789
790
791
# File 'lib/paypal-sdk/invoice/data_types.rb', line 781

def self.load_members
  include ResponseStatus
  object_of :responseEnvelope, ResponseEnvelope, :required => true
  # The invoice ID of the invoice that was marked as unpaid. 
  object_of :invoiceID, String, :required => true
  # The invoice number of the invoice that was marked as unpaid. 
  object_of :invoiceNumber, String, :required => true
  # The URL of the details page of the invoice that was marked as unpaid. 
  object_of :invoiceURL, String, :required => true
  array_of :error, ErrorData
end