Class: MassPayRequestItemType
- Inherits:
-
Object
- Object
- MassPayRequestItemType
- 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
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#note ⇒ Object
Returns the value of attribute note.
-
#receiverEmail ⇒ Object
Returns the value of attribute receiverEmail.
-
#receiverID ⇒ Object
Returns the value of attribute receiverID.
-
#uniqueId ⇒ Object
Returns the value of attribute uniqueId.
Instance Method Summary collapse
-
#initialize(receiverEmail = nil, receiverID = nil, amount = nil, uniqueId = nil, note = nil) ⇒ MassPayRequestItemType
constructor
A new instance of MassPayRequestItemType.
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
#amount ⇒ Object
Returns the value of attribute amount.
684 685 686 |
# File 'lib/v_paypal/default.rb', line 684 def amount @amount end |
#note ⇒ Object
Returns the value of attribute note.
686 687 688 |
# File 'lib/v_paypal/default.rb', line 686 def note @note end |
#receiverEmail ⇒ Object
Returns the value of attribute receiverEmail.
682 683 684 |
# File 'lib/v_paypal/default.rb', line 682 def receiverEmail @receiverEmail end |
#receiverID ⇒ Object
Returns the value of attribute receiverID.
683 684 685 |
# File 'lib/v_paypal/default.rb', line 683 def receiverID @receiverID end |
#uniqueId ⇒ Object
Returns the value of attribute uniqueId.
685 686 687 |
# File 'lib/v_paypal/default.rb', line 685 def uniqueId @uniqueId end |