Method: CharityType#initialize
- Defined in:
- lib/eBay.rb
#initialize(charityName = nil, charityNumber = nil, donationPercent = nil, charityID = nil, mission = nil, logoURL = nil, status = nil, charityListing = nil) ⇒ CharityType
Returns a new instance of CharityType.
18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 |
# File 'lib/eBay.rb', line 18193 def initialize(charityName = nil, charityNumber = nil, donationPercent = nil, charityID = nil, mission = nil, logoURL = nil, status = nil, charityListing = nil) @charityName = charityName @charityNumber = charityNumber @donationPercent = donationPercent @charityID = charityID @mission = mission @logoURL = logoURL @status = status @charityListing = charityListing @__xmlele_any = nil end |