Class: MassPayRequestItemType

Inherits:
Object
  • Object
show all
Defined in:
lib/v_paypal/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.



688
689
690
691
692
693
694
# File 'lib/v_paypal/default.rb', line 688

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.



684
685
686
# File 'lib/v_paypal/default.rb', line 684

def amount
  @amount
end

#noteObject

Returns the value of attribute note.



686
687
688
# File 'lib/v_paypal/default.rb', line 686

def note
  @note
end

#receiverEmailObject

Returns the value of attribute receiverEmail.



682
683
684
# File 'lib/v_paypal/default.rb', line 682

def receiverEmail
  @receiverEmail
end

#receiverIDObject

Returns the value of attribute receiverID.



683
684
685
# File 'lib/v_paypal/default.rb', line 683

def receiverID
  @receiverID
end

#uniqueIdObject

Returns the value of attribute uniqueId.



685
686
687
# File 'lib/v_paypal/default.rb', line 685

def uniqueId
  @uniqueId
end