Class: SetStoreCustomPageResponseType

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

Overview

urn:ebay:apis:eBLBaseComponentsSetStoreCustomPageResponseType

Constant Summary collapse

@@schema_type =
"SetStoreCustomPageResponseType"
@@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")]],
  ["customPage", ["StoreCustomPageType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CustomPage")]]
]

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, customPage = nil) ⇒ SetStoreCustomPageResponseType

Returns a new instance of SetStoreCustomPageResponseType.



13302
13303
13304
13305
13306
13307
13308
13309
13310
13311
13312
13313
13314
13315
13316
13317
13318
# File 'lib/eBay.rb', line 13302

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, customPage = 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
  @customPage = customPage
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



13295
13296
13297
# File 'lib/eBay.rb', line 13295

def __xmlele_any
  @__xmlele_any
end

#ackObject

Returns the value of attribute ack.



13283
13284
13285
# File 'lib/eBay.rb', line 13283

def ack
  @ack
end

#buildObject

Returns the value of attribute build.



13288
13289
13290
# File 'lib/eBay.rb', line 13288

def build
  @build
end

#correlationIDObject

Returns the value of attribute correlationID.



13284
13285
13286
# File 'lib/eBay.rb', line 13284

def correlationID
  @correlationID
end

#customPageObject

Returns the value of attribute customPage.



13296
13297
13298
# File 'lib/eBay.rb', line 13296

def customPage
  @customPage
end

#duplicateInvocationDetailsObject

Returns the value of attribute duplicateInvocationDetails.



13290
13291
13292
# File 'lib/eBay.rb', line 13290

def duplicateInvocationDetails
  @duplicateInvocationDetails
end

#eIASTokenObject

Returns the value of attribute eIASToken.



13292
13293
13294
# File 'lib/eBay.rb', line 13292

def eIASToken
  @eIASToken
end

#errorsObject

Returns the value of attribute errors.



13285
13286
13287
# File 'lib/eBay.rb', line 13285

def errors
  @errors
end

#hardExpirationWarningObject

Returns the value of attribute hardExpirationWarning.



13294
13295
13296
# File 'lib/eBay.rb', line 13294

def hardExpirationWarning
  @hardExpirationWarning
end

#messageObject

Returns the value of attribute message.



13286
13287
13288
# File 'lib/eBay.rb', line 13286

def message
  @message
end

#notificationEventNameObject

Returns the value of attribute notificationEventName.



13289
13290
13291
# File 'lib/eBay.rb', line 13289

def notificationEventName
  @notificationEventName
end

#notificationSignatureObject

Returns the value of attribute notificationSignature.



13293
13294
13295
# File 'lib/eBay.rb', line 13293

def notificationSignature
  @notificationSignature
end

#recipientUserIDObject

Returns the value of attribute recipientUserID.



13291
13292
13293
# File 'lib/eBay.rb', line 13291

def recipientUserID
  @recipientUserID
end

#timestampObject

Returns the value of attribute timestamp.



13282
13283
13284
# File 'lib/eBay.rb', line 13282

def timestamp
  @timestamp
end

#versionObject

Returns the value of attribute version.



13287
13288
13289
# File 'lib/eBay.rb', line 13287

def version
  @version
end

Instance Method Details

#set_any(elements) ⇒ Object



13298
13299
13300
# File 'lib/eBay.rb', line 13298

def set_any(elements)
  @__xmlele_any = elements
end