class DeliveryInfoNotification
Public Class Methods
new()
click to toggle source
# File lib/response/mms/DeliveryInfoNotification.rb, line 5 def initialize @callbackData=nil @deliveryInfo=nil end
Public Instance Methods
getCallbackData()
click to toggle source
# File lib/response/mms/DeliveryInfoNotification.rb, line 22 def getCallbackData @callbackData end
getDeliveryInfo()
click to toggle source
# File lib/response/mms/DeliveryInfoNotification.rb, line 30 def getDeliveryInfo @deliveryInfo end
initializeJSON(jsondict)
click to toggle source
# File lib/response/mms/DeliveryInfoNotification.rb, line 10 def initializeJSON(jsondict) @callbackData=nil if (jsondict!=nil) && (jsondict.has_key?'callbackData') && (jsondict['callbackData']!=nil) @callbackData=jsondict['callbackData'] end @deliveryInfo=nil if (jsondict!=nil) && (jsondict.has_key?'deliveryInfo') && (jsondict['deliveryInfo']!=nil) then @deliveryInfo=DeliveryInfo.new @deliveryInfo.initializeJSON(jsondict['deliveryInfo']) end end
setCallbackData(callbackData)
click to toggle source
# File lib/response/mms/DeliveryInfoNotification.rb, line 26 def setCallbackData(callbackData) @callbackData=callbackData end
setDeliveryInfo(deliveryInfo)
click to toggle source
# File lib/response/mms/DeliveryInfoNotification.rb, line 34 def setDeliveryInfo(deliveryInfo) @deliveryInfo=deliveryInfo end