Class: BidApprovalType

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

Overview

urn:ebay:apis:eBLBaseComponentsBidApprovalType

Constant Summary collapse

@@schema_type =
"BidApprovalType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["userID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "UserID")]],
  ["approvedBiddingLimit", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ApprovedBiddingLimit")]],
  ["declinedComment", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "DeclinedComment")]],
  ["status", ["BidderStatusCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Status")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(userID = nil, approvedBiddingLimit = nil, declinedComment = nil, status = nil) ⇒ BidApprovalType

Returns a new instance of BidApprovalType.



13968
13969
13970
13971
13972
13973
13974
# File 'lib/eBay.rb', line 13968

def initialize(userID = nil, approvedBiddingLimit = nil, declinedComment = nil, status = nil)
  @userID = userID
  @approvedBiddingLimit = approvedBiddingLimit
  @declinedComment = declinedComment
  @status = status
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



13962
13963
13964
# File 'lib/eBay.rb', line 13962

def __xmlele_any
  @__xmlele_any
end

#approvedBiddingLimitObject

Returns the value of attribute approvedBiddingLimit.



13959
13960
13961
# File 'lib/eBay.rb', line 13959

def approvedBiddingLimit
  @approvedBiddingLimit
end

#declinedCommentObject

Returns the value of attribute declinedComment.



13960
13961
13962
# File 'lib/eBay.rb', line 13960

def declinedComment
  @declinedComment
end

#statusObject

Returns the value of attribute status.



13961
13962
13963
# File 'lib/eBay.rb', line 13961

def status
  @status
end

#userIDObject

Returns the value of attribute userID.



13958
13959
13960
# File 'lib/eBay.rb', line 13958

def userID
  @userID
end

Instance Method Details

#set_any(elements) ⇒ Object



13964
13965
13966
# File 'lib/eBay.rb', line 13964

def set_any(elements)
  @__xmlele_any = elements
end