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.



19087
19088
19089
19090
19091
19092
19093
# File 'lib/eBay.rb', line 19087

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.



19081
19082
19083
# File 'lib/eBay.rb', line 19081

def __xmlele_any
  @__xmlele_any
end

#approvedBiddingLimitObject

Returns the value of attribute approvedBiddingLimit.



19079
19080
19081
# File 'lib/eBay.rb', line 19079

def approvedBiddingLimit
  @approvedBiddingLimit
end

#bidderStatusObject

Returns the value of attribute bidderStatus.



19078
19079
19080
# File 'lib/eBay.rb', line 19078

def bidderStatus
  @bidderStatus
end

#declinedCommentObject

Returns the value of attribute declinedComment.



19080
19081
19082
# File 'lib/eBay.rb', line 19080

def declinedComment
  @declinedComment
end

#requestedBiddingLimitObject

Returns the value of attribute requestedBiddingLimit.



19077
19078
19079
# File 'lib/eBay.rb', line 19077

def requestedBiddingLimit
  @requestedBiddingLimit
end

Instance Method Details

#set_any(elements) ⇒ Object



19083
19084
19085
# File 'lib/eBay.rb', line 19083

def set_any(elements)
  @__xmlele_any = elements
end