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



924
925
926
927
928
929
930
931
932
933
934
# File 'lib/paypal-sdk/invoice/data_types.rb', line 924

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