Class: PayPal::SDK::Invoice::DataTypes::MarkInvoiceAsRefundedResponse

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

Overview

The response object for MarkInvoiceAsRefunded.

Class Method Summary collapse

Class Method Details

.load_membersObject



749
750
751
752
753
754
755
756
757
758
759
# File 'lib/paypal-sdk/invoice/data_types.rb', line 749

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