Class: PayPal::SDK::Invoice::DataTypes::CancelInvoiceRequest

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

Overview

The request object for CancelInvoice.

Class Method Summary collapse

Class Method Details

.load_membersObject



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

def self.load_members
  object_of :requestEnvelope, RequestEnvelope, :required => true
  # invoice's ID 
  object_of :invoiceID, String
  # Subject of the cancellation notification 
  object_of :subject, String
  # Note to send payer within the cancellation notification 
  object_of :noteForPayer, String
  # send a copy of cancellation notification to merchant 
  object_of :sendCopyToMerchant, Boolean
  # send cancel notification to payer 
  object_of :sendPayerNotification, Boolean
end