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



638
639
640
641
642
643
644
645
646
647
648
# File 'lib/paypal-sdk/invoice/data_types.rb', line 638

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
end