class CallbackReference
Public Class Methods
new()
click to toggle source
# File lib/response/mms/CallbackReference.rb, line 4 def initialize @notifyURL=nil @callbackData=nil end
Public Instance Methods
getCallbackData()
click to toggle source
# File lib/response/mms/CallbackReference.rb, line 28 def getCallbackData @callbackData end
getNotifyURL()
click to toggle source
# File lib/response/mms/CallbackReference.rb, line 20 def getNotifyURL @notifyURL end
initializeJSON(jsondict)
click to toggle source
# File lib/response/mms/CallbackReference.rb, line 9 def initializeJSON(jsondict) @notifyURL=nil if (jsondict!=nil) && (jsondict.has_key?'notifyURL') && (jsondict['notifyURL']!=nil) @notifyURL=jsondict['notifyURL'] end @callbackData=nil if (jsondict!=nil) && (jsondict.has_key?'callbackData') && (jsondict['callbackData']!=nil) @callbackData=jsondict['callbackData'] end end
setCallbackData(callbackData)
click to toggle source
# File lib/response/mms/CallbackReference.rb, line 32 def setCallbackData(callbackData) @callbackData=callbackData end
setNotifyURL(notifyURL)
click to toggle source
# File lib/response/mms/CallbackReference.rb, line 24 def setNotifyURL(notifyURL) @notifyURL=notifyURL end