Class: SellingStatusType

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

Overview

urn:ebay:apis:eBLBaseComponentsSellingStatusType

Constant Summary collapse

@@schema_type =
"SellingStatusType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["bidCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BidCount")]],
  ["bidIncrement", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BidIncrement")]],
  ["convertedCurrentPrice", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ConvertedCurrentPrice")]],
  ["currentPrice", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CurrentPrice")]],
  ["highBidder", ["UserType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "HighBidder")]],
  ["leadCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "LeadCount")]],
  ["minimumToBid", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MinimumToBid")]],
  ["quantitySold", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "QuantitySold")]],
  ["reserveMet", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ReserveMet")]],
  ["secondChanceEligible", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "SecondChanceEligible")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bidCount = nil, bidIncrement = nil, convertedCurrentPrice = nil, currentPrice = nil, highBidder = nil, leadCount = nil, minimumToBid = nil, quantitySold = nil, reserveMet = nil, secondChanceEligible = nil) ⇒ SellingStatusType

Returns a new instance of SellingStatusType.



2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
# File 'lib/paypal-business/default.rb', line 2463

def initialize(bidCount = nil, bidIncrement = nil, convertedCurrentPrice = nil, currentPrice = nil, highBidder = nil, leadCount = nil, minimumToBid = nil, quantitySold = nil, reserveMet = nil, secondChanceEligible = nil)
  @bidCount = bidCount
  @bidIncrement = bidIncrement
  @convertedCurrentPrice = convertedCurrentPrice
  @currentPrice = currentPrice
  @highBidder = highBidder
  @leadCount = leadCount
  @minimumToBid = minimumToBid
  @quantitySold = quantitySold
  @reserveMet = reserveMet
  @secondChanceEligible = secondChanceEligible
end

Instance Attribute Details

#bidCountObject

Returns the value of attribute bidCount.



2452
2453
2454
# File 'lib/paypal-business/default.rb', line 2452

def bidCount
  @bidCount
end

#bidIncrementObject

Returns the value of attribute bidIncrement.



2453
2454
2455
# File 'lib/paypal-business/default.rb', line 2453

def bidIncrement
  @bidIncrement
end

#convertedCurrentPriceObject

Returns the value of attribute convertedCurrentPrice.



2454
2455
2456
# File 'lib/paypal-business/default.rb', line 2454

def convertedCurrentPrice
  @convertedCurrentPrice
end

#currentPriceObject

Returns the value of attribute currentPrice.



2455
2456
2457
# File 'lib/paypal-business/default.rb', line 2455

def currentPrice
  @currentPrice
end

#highBidderObject

Returns the value of attribute highBidder.



2456
2457
2458
# File 'lib/paypal-business/default.rb', line 2456

def highBidder
  @highBidder
end

#leadCountObject

Returns the value of attribute leadCount.



2457
2458
2459
# File 'lib/paypal-business/default.rb', line 2457

def leadCount
  @leadCount
end

#minimumToBidObject

Returns the value of attribute minimumToBid.



2458
2459
2460
# File 'lib/paypal-business/default.rb', line 2458

def minimumToBid
  @minimumToBid
end

#quantitySoldObject

Returns the value of attribute quantitySold.



2459
2460
2461
# File 'lib/paypal-business/default.rb', line 2459

def quantitySold
  @quantitySold
end

#reserveMetObject

Returns the value of attribute reserveMet.



2460
2461
2462
# File 'lib/paypal-business/default.rb', line 2460

def reserveMet
  @reserveMet
end

#secondChanceEligibleObject

Returns the value of attribute secondChanceEligible.



2461
2462
2463
# File 'lib/paypal-business/default.rb', line 2461

def secondChanceEligible
  @secondChanceEligible
end