Class: VerifiedUserRequirementsType

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

Overview

urn:ebay:apis:eBLBaseComponentsVerifiedUserRequirementsType

Constant Summary collapse

@@schema_type =
"VerifiedUserRequirementsType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["verifiedUser", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "VerifiedUser")]],
  ["minimumFeedbackScore", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MinimumFeedbackScore")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(verifiedUser = nil, minimumFeedbackScore = nil) ⇒ VerifiedUserRequirementsType

Returns a new instance of VerifiedUserRequirementsType.



24186
24187
24188
24189
# File 'lib/eBay.rb', line 24186

def initialize(verifiedUser = nil, minimumFeedbackScore = nil)
  @verifiedUser = verifiedUser
  @minimumFeedbackScore = minimumFeedbackScore
end

Instance Attribute Details

#minimumFeedbackScoreObject

Returns the value of attribute minimumFeedbackScore.



24184
24185
24186
# File 'lib/eBay.rb', line 24184

def minimumFeedbackScore
  @minimumFeedbackScore
end

#verifiedUserObject

Returns the value of attribute verifiedUser.



24183
24184
24185
# File 'lib/eBay.rb', line 24183

def verifiedUser
  @verifiedUser
end