Class: LiveAuctionBidType

Inherits:
Object
  • Object
show all
Defined in:
lib/eBay.rb

Overview

urn:ebay:apis:eBLBaseComponentsLiveAuctionBidType

Constant Summary collapse

@@schema_type =
"LiveAuctionBidType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["requestedBiddingLimit", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "RequestedBiddingLimit")]],
  ["bidderStatus", ["BidderStatusCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BidderStatus")]],
  ["approvedBiddingLimit", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ApprovedBiddingLimit")]],
  ["declinedComment", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "DeclinedComment")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(requestedBiddingLimit = nil, bidderStatus = nil, approvedBiddingLimit = nil, declinedComment = nil) ⇒ LiveAuctionBidType

Returns a new instance of LiveAuctionBidType.



16824
16825
16826
16827
16828
16829
16830
# File 'lib/eBay.rb', line 16824

def initialize(requestedBiddingLimit = nil, bidderStatus = nil, approvedBiddingLimit = nil, declinedComment = nil)
  @requestedBiddingLimit = requestedBiddingLimit
  @bidderStatus = bidderStatus
  @approvedBiddingLimit = approvedBiddingLimit
  @declinedComment = declinedComment
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



16818
16819
16820
# File 'lib/eBay.rb', line 16818

def __xmlele_any
  @__xmlele_any
end

#approvedBiddingLimitObject

Returns the value of attribute approvedBiddingLimit.



16816
16817
16818
# File 'lib/eBay.rb', line 16816

def approvedBiddingLimit
  @approvedBiddingLimit
end

#bidderStatusObject

Returns the value of attribute bidderStatus.



16815
16816
16817
# File 'lib/eBay.rb', line 16815

def bidderStatus
  @bidderStatus
end

#declinedCommentObject

Returns the value of attribute declinedComment.



16817
16818
16819
# File 'lib/eBay.rb', line 16817

def declinedComment
  @declinedComment
end

#requestedBiddingLimitObject

Returns the value of attribute requestedBiddingLimit.



16814
16815
16816
# File 'lib/eBay.rb', line 16814

def requestedBiddingLimit
  @requestedBiddingLimit
end

Instance Method Details

#set_any(elements) ⇒ Object



16820
16821
16822
# File 'lib/eBay.rb', line 16820

def set_any(elements)
  @__xmlele_any = elements
end