Class: GetCategoriesResponseType

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

Overview

urn:ebay:apis:eBLBaseComponentsGetCategoriesResponseType

Constant Summary collapse

@@schema_type =
"GetCategoriesResponseType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["timestamp", ["SOAP::SOAPDateTime", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Timestamp")]],
  ["ack", ["AckCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Ack")]],
  ["correlationID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CorrelationID")]],
  ["errors", ["ErrorType[]", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Errors")]],
  ["message", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Message")]],
  ["version", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Version")]],
  ["build", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Build")]],
  ["notificationEventName", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "NotificationEventName")]],
  ["duplicateInvocationDetails", ["DuplicateInvocationDetailsType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "DuplicateInvocationDetails")]],
  ["recipientUserID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "RecipientUserID")]],
  ["eIASToken", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "EIASToken")]],
  ["notificationSignature", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "NotificationSignature")]],
  ["hardExpirationWarning", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "HardExpirationWarning")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]],
  ["categoryArray", ["CategoryArrayType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CategoryArray")]],
  ["categoryCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CategoryCount")]],
  ["updateTime", ["SOAP::SOAPDateTime", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "UpdateTime")]],
  ["categoryVersion", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CategoryVersion")]],
  ["reservePriceInclusive", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ReservePriceInclusive")]],
  ["reservePriceAllowed", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ReservePriceAllowed")]],
  ["minimumReservePrice", ["SOAP::SOAPDouble", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MinimumReservePrice")]],
  ["currency", ["CurrencyCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Currency")]],
  ["reduceReserveInclusive", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ReduceReserveInclusive")]],
  ["reduceReserveAllowed", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ReduceReserveAllowed")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(timestamp = nil, ack = nil, correlationID = nil, errors = [], message = nil, version = nil, build = nil, notificationEventName = nil, duplicateInvocationDetails = nil, recipientUserID = nil, eIASToken = nil, notificationSignature = nil, hardExpirationWarning = nil, categoryArray = nil, categoryCount = nil, updateTime = nil, categoryVersion = nil, reservePriceInclusive = nil, reservePriceAllowed = nil, minimumReservePrice = nil, currency = nil, reduceReserveInclusive = nil, reduceReserveAllowed = nil) ⇒ GetCategoriesResponseType

Returns a new instance of GetCategoriesResponseType.



2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
# File 'lib/eBay.rb', line 2946

def initialize(timestamp = nil, ack = nil, correlationID = nil, errors = [], message = nil, version = nil, build = nil, notificationEventName = nil, duplicateInvocationDetails = nil, recipientUserID = nil, eIASToken = nil, notificationSignature = nil, hardExpirationWarning = nil, categoryArray = nil, categoryCount = nil, updateTime = nil, categoryVersion = nil, reservePriceInclusive = nil, reservePriceAllowed = nil, minimumReservePrice = nil, currency = nil, reduceReserveInclusive = nil, reduceReserveAllowed = nil)
  @timestamp = timestamp
  @ack = ack
  @correlationID = correlationID
  @errors = errors
  @message = message
  @version = version
  @build = build
  @notificationEventName = notificationEventName
  @duplicateInvocationDetails = duplicateInvocationDetails
  @recipientUserID = recipientUserID
  @eIASToken = eIASToken
  @notificationSignature = notificationSignature
  @hardExpirationWarning = hardExpirationWarning
  @__xmlele_any = nil
  @categoryArray = categoryArray
  @categoryCount = categoryCount
  @updateTime = updateTime
  @categoryVersion = categoryVersion
  @reservePriceInclusive = reservePriceInclusive
  @reservePriceAllowed = reservePriceAllowed
  @minimumReservePrice = minimumReservePrice
  @currency = currency
  @reduceReserveInclusive = reduceReserveInclusive
  @reduceReserveAllowed = reduceReserveAllowed
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



2930
2931
2932
# File 'lib/eBay.rb', line 2930

def __xmlele_any
  @__xmlele_any
end

#ackObject

Returns the value of attribute ack.



2918
2919
2920
# File 'lib/eBay.rb', line 2918

def ack
  @ack
end

#buildObject

Returns the value of attribute build.



2923
2924
2925
# File 'lib/eBay.rb', line 2923

def build
  @build
end

#categoryArrayObject

Returns the value of attribute categoryArray.



2931
2932
2933
# File 'lib/eBay.rb', line 2931

def categoryArray
  @categoryArray
end

#categoryCountObject

Returns the value of attribute categoryCount.



2932
2933
2934
# File 'lib/eBay.rb', line 2932

def categoryCount
  @categoryCount
end

#categoryVersionObject

Returns the value of attribute categoryVersion.



2934
2935
2936
# File 'lib/eBay.rb', line 2934

def categoryVersion
  @categoryVersion
end

#correlationIDObject

Returns the value of attribute correlationID.



2919
2920
2921
# File 'lib/eBay.rb', line 2919

def correlationID
  @correlationID
end

#currencyObject

Returns the value of attribute currency.



2938
2939
2940
# File 'lib/eBay.rb', line 2938

def currency
  @currency
end

#duplicateInvocationDetailsObject

Returns the value of attribute duplicateInvocationDetails.



2925
2926
2927
# File 'lib/eBay.rb', line 2925

def duplicateInvocationDetails
  @duplicateInvocationDetails
end

#eIASTokenObject

Returns the value of attribute eIASToken.



2927
2928
2929
# File 'lib/eBay.rb', line 2927

def eIASToken
  @eIASToken
end

#errorsObject

Returns the value of attribute errors.



2920
2921
2922
# File 'lib/eBay.rb', line 2920

def errors
  @errors
end

#hardExpirationWarningObject

Returns the value of attribute hardExpirationWarning.



2929
2930
2931
# File 'lib/eBay.rb', line 2929

def hardExpirationWarning
  @hardExpirationWarning
end

#messageObject

Returns the value of attribute message.



2921
2922
2923
# File 'lib/eBay.rb', line 2921

def message
  @message
end

#minimumReservePriceObject

Returns the value of attribute minimumReservePrice.



2937
2938
2939
# File 'lib/eBay.rb', line 2937

def minimumReservePrice
  @minimumReservePrice
end

#notificationEventNameObject

Returns the value of attribute notificationEventName.



2924
2925
2926
# File 'lib/eBay.rb', line 2924

def notificationEventName
  @notificationEventName
end

#notificationSignatureObject

Returns the value of attribute notificationSignature.



2928
2929
2930
# File 'lib/eBay.rb', line 2928

def notificationSignature
  @notificationSignature
end

#recipientUserIDObject

Returns the value of attribute recipientUserID.



2926
2927
2928
# File 'lib/eBay.rb', line 2926

def recipientUserID
  @recipientUserID
end

#reduceReserveAllowedObject

Returns the value of attribute reduceReserveAllowed.



2940
2941
2942
# File 'lib/eBay.rb', line 2940

def reduceReserveAllowed
  @reduceReserveAllowed
end

#reduceReserveInclusiveObject

Returns the value of attribute reduceReserveInclusive.



2939
2940
2941
# File 'lib/eBay.rb', line 2939

def reduceReserveInclusive
  @reduceReserveInclusive
end

#reservePriceAllowedObject

Returns the value of attribute reservePriceAllowed.



2936
2937
2938
# File 'lib/eBay.rb', line 2936

def reservePriceAllowed
  @reservePriceAllowed
end

#reservePriceInclusiveObject

Returns the value of attribute reservePriceInclusive.



2935
2936
2937
# File 'lib/eBay.rb', line 2935

def reservePriceInclusive
  @reservePriceInclusive
end

#timestampObject

Returns the value of attribute timestamp.



2917
2918
2919
# File 'lib/eBay.rb', line 2917

def timestamp
  @timestamp
end

#updateTimeObject

Returns the value of attribute updateTime.



2933
2934
2935
# File 'lib/eBay.rb', line 2933

def updateTime
  @updateTime
end

#versionObject

Returns the value of attribute version.



2922
2923
2924
# File 'lib/eBay.rb', line 2922

def version
  @version
end

Instance Method Details

#set_any(elements) ⇒ Object



2942
2943
2944
# File 'lib/eBay.rb', line 2942

def set_any(elements)
  @__xmlele_any = elements
end