Class: AuctionInfoType

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

Overview

urn:ebay:apis:eBLBaseComponentsAuctionInfoType

Constant Summary collapse

@@schema_type =
"AuctionInfoType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_attribute =
{
  XSD::QName.new(nil, "multiItem") => "SOAP::SOAPString"
}
@@schema_element =
[
  ["buyerID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BuyerID")]],
  ["closingDate", ["SOAP::SOAPDateTime", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ClosingDate")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(buyerID = nil, closingDate = nil) ⇒ AuctionInfoType

Returns a new instance of AuctionInfoType.



3657
3658
3659
3660
3661
# File 'lib/v_paypal/default.rb', line 3657

def initialize(buyerID = nil, closingDate = nil)
  @buyerID = buyerID
  @closingDate = closingDate
  @__xmlattr = {}
end

Instance Attribute Details

#buyerIDObject

Returns the value of attribute buyerID.



3646
3647
3648
# File 'lib/v_paypal/default.rb', line 3646

def buyerID
  @buyerID
end

#closingDateObject

Returns the value of attribute closingDate.



3647
3648
3649
# File 'lib/v_paypal/default.rb', line 3647

def closingDate
  @closingDate
end

Instance Method Details

#xmlattr_multiItemObject



3649
3650
3651
# File 'lib/v_paypal/default.rb', line 3649

def xmlattr_multiItem
  (@__xmlattr ||= {})[XSD::QName.new(nil, "multiItem")]
end

#xmlattr_multiItem=(value) ⇒ Object



3653
3654
3655
# File 'lib/v_paypal/default.rb', line 3653

def xmlattr_multiItem=(value)
  (@__xmlattr ||= {})[XSD::QName.new(nil, "multiItem")] = value
end