Class: MassPayRequestItemType

Inherits:
Object
  • Object
show all
Defined in:
lib/paypal-business/default.rb

Overview

urn:ebay:api:PayPalAPIMassPayRequestItemType

Constant Summary collapse

@@schema_type =
"MassPayRequestItemType"
@@schema_ns =
"urn:ebay:api:PayPalAPI"
@@schema_element =
[
  ["receiverEmail", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:api:PayPalAPI", "ReceiverEmail")]],
  ["receiverID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:api:PayPalAPI", "ReceiverID")]],
  ["amount", ["BasicAmountType", XSD::QName.new("urn:ebay:api:PayPalAPI", "Amount")]],
  ["uniqueId", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:api:PayPalAPI", "UniqueId")]],
  ["note", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:api:PayPalAPI", "Note")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(receiverEmail = nil, receiverID = nil, amount = nil, uniqueId = nil, note = nil) ⇒ MassPayRequestItemType

Returns a new instance of MassPayRequestItemType.



720
721
722
723
724
725
726
# File 'lib/paypal-business/default.rb', line 720

def initialize(receiverEmail = nil, receiverID = nil, amount = nil, uniqueId = nil, note = nil)
  @receiverEmail = receiverEmail
  @receiverID = receiverID
  @amount = amount
  @uniqueId = uniqueId
  @note = note
end

Instance Attribute Details

#amountObject

Returns the value of attribute amount.



716
717
718
# File 'lib/paypal-business/default.rb', line 716

def amount
  @amount
end

#noteObject

Returns the value of attribute note.



718
719
720
# File 'lib/paypal-business/default.rb', line 718

def note
  @note
end

#receiverEmailObject

Returns the value of attribute receiverEmail.



714
715
716
# File 'lib/paypal-business/default.rb', line 714

def receiverEmail
  @receiverEmail
end

#receiverIDObject

Returns the value of attribute receiverID.



715
716
717
# File 'lib/paypal-business/default.rb', line 715

def receiverID
  @receiverID
end

#uniqueIdObject

Returns the value of attribute uniqueId.



717
718
719
# File 'lib/paypal-business/default.rb', line 717

def uniqueId
  @uniqueId
end