Class: GetCharitiesRequestType

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

Overview

urn:ebay:apis:eBLBaseComponentsGetCharitiesRequestType

Constant Summary collapse

@@schema_type =
"GetCharitiesRequestType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["detailLevel", ["DetailLevelCodeType[]", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "DetailLevel")]],
  ["errorLanguage", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ErrorLanguage")]],
  ["messageID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MessageID")]],
  ["version", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Version")]],
  ["errorHandling", ["ErrorHandlingCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ErrorHandling")]],
  ["invocationID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "InvocationID")]],
  ["warningLevel", ["WarningLevelCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "WarningLevel")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]],
  ["charityID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CharityID")]],
  ["charityName", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CharityName")]],
  ["query", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Query")]],
  ["charityRegion", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CharityRegion")]],
  ["charityDomain", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CharityDomain")]],
  ["includeDescription", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "IncludeDescription")]],
  ["matchType", ["StringMatchCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MatchType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(detailLevel = [], errorLanguage = nil, messageID = nil, version = nil, errorHandling = nil, invocationID = nil, warningLevel = nil, charityID = nil, charityName = nil, query = nil, charityRegion = nil, charityDomain = nil, includeDescription = nil, matchType = nil) ⇒ GetCharitiesRequestType

Returns a new instance of GetCharitiesRequestType.



3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
# File 'lib/eBay.rb', line 3212

def initialize(detailLevel = [], errorLanguage = nil, messageID = nil, version = nil, errorHandling = nil, invocationID = nil, warningLevel = nil, charityID = nil, charityName = nil, query = nil, charityRegion = nil, charityDomain = nil, includeDescription = nil, matchType = nil)
  @detailLevel = detailLevel
  @errorLanguage = errorLanguage
  @messageID = messageID
  @version = version
  @errorHandling = errorHandling
  @invocationID = invocationID
  @warningLevel = warningLevel
  @__xmlele_any = nil
  @charityID = charityID
  @charityName = charityName
  @query = query
  @charityRegion = charityRegion
  @charityDomain = charityDomain
  @includeDescription = includeDescription
  @matchType = matchType
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



3199
3200
3201
# File 'lib/eBay.rb', line 3199

def __xmlele_any
  @__xmlele_any
end

#charityDomainObject

Returns the value of attribute charityDomain.



3204
3205
3206
# File 'lib/eBay.rb', line 3204

def charityDomain
  @charityDomain
end

#charityIDObject

Returns the value of attribute charityID.



3200
3201
3202
# File 'lib/eBay.rb', line 3200

def charityID
  @charityID
end

#charityNameObject

Returns the value of attribute charityName.



3201
3202
3203
# File 'lib/eBay.rb', line 3201

def charityName
  @charityName
end

#charityRegionObject

Returns the value of attribute charityRegion.



3203
3204
3205
# File 'lib/eBay.rb', line 3203

def charityRegion
  @charityRegion
end

#detailLevelObject

Returns the value of attribute detailLevel.



3192
3193
3194
# File 'lib/eBay.rb', line 3192

def detailLevel
  @detailLevel
end

#errorHandlingObject

Returns the value of attribute errorHandling.



3196
3197
3198
# File 'lib/eBay.rb', line 3196

def errorHandling
  @errorHandling
end

#errorLanguageObject

Returns the value of attribute errorLanguage.



3193
3194
3195
# File 'lib/eBay.rb', line 3193

def errorLanguage
  @errorLanguage
end

#includeDescriptionObject

Returns the value of attribute includeDescription.



3205
3206
3207
# File 'lib/eBay.rb', line 3205

def includeDescription
  @includeDescription
end

#invocationIDObject

Returns the value of attribute invocationID.



3197
3198
3199
# File 'lib/eBay.rb', line 3197

def invocationID
  @invocationID
end

#matchTypeObject

Returns the value of attribute matchType.



3206
3207
3208
# File 'lib/eBay.rb', line 3206

def matchType
  @matchType
end

#messageIDObject

Returns the value of attribute messageID.



3194
3195
3196
# File 'lib/eBay.rb', line 3194

def messageID
  @messageID
end

#queryObject

Returns the value of attribute query.



3202
3203
3204
# File 'lib/eBay.rb', line 3202

def query
  @query
end

#versionObject

Returns the value of attribute version.



3195
3196
3197
# File 'lib/eBay.rb', line 3195

def version
  @version
end

#warningLevelObject

Returns the value of attribute warningLevel.



3198
3199
3200
# File 'lib/eBay.rb', line 3198

def warningLevel
  @warningLevel
end

Instance Method Details

#set_any(elements) ⇒ Object



3208
3209
3210
# File 'lib/eBay.rb', line 3208

def set_any(elements)
  @__xmlele_any = elements
end