Class: SellingStatusType

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



2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
# File 'lib/v_paypal/default.rb', line 2283

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.



2272
2273
2274
# File 'lib/v_paypal/default.rb', line 2272

def bidCount
  @bidCount
end

#bidIncrementObject

Returns the value of attribute bidIncrement.



2273
2274
2275
# File 'lib/v_paypal/default.rb', line 2273

def bidIncrement
  @bidIncrement
end

#convertedCurrentPriceObject

Returns the value of attribute convertedCurrentPrice.



2274
2275
2276
# File 'lib/v_paypal/default.rb', line 2274

def convertedCurrentPrice
  @convertedCurrentPrice
end

#currentPriceObject

Returns the value of attribute currentPrice.



2275
2276
2277
# File 'lib/v_paypal/default.rb', line 2275

def currentPrice
  @currentPrice
end

#highBidderObject

Returns the value of attribute highBidder.



2276
2277
2278
# File 'lib/v_paypal/default.rb', line 2276

def highBidder
  @highBidder
end

#leadCountObject

Returns the value of attribute leadCount.



2277
2278
2279
# File 'lib/v_paypal/default.rb', line 2277

def leadCount
  @leadCount
end

#minimumToBidObject

Returns the value of attribute minimumToBid.



2278
2279
2280
# File 'lib/v_paypal/default.rb', line 2278

def minimumToBid
  @minimumToBid
end

#quantitySoldObject

Returns the value of attribute quantitySold.



2279
2280
2281
# File 'lib/v_paypal/default.rb', line 2279

def quantitySold
  @quantitySold
end

#reserveMetObject

Returns the value of attribute reserveMet.



2280
2281
2282
# File 'lib/v_paypal/default.rb', line 2280

def reserveMet
  @reserveMet
end

#secondChanceEligibleObject

Returns the value of attribute secondChanceEligible.



2281
2282
2283
# File 'lib/v_paypal/default.rb', line 2281

def secondChanceEligible
  @secondChanceEligible
end