class RetrieveMMSMessageResponse

Public Class Methods

new() click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 5
def initialize
  @httpResponseCode=0
  @contentType=nil
  @location=nil
  @inboundMessage=nil
end

Public Instance Methods

getAttachment() click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 48
def getAttachment
  @attachment
end
getContentType() click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 20
def getContentType
  @contentType
end
getHTTPResponseCode() click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 12
def getHTTPResponseCode
  @httpResponseCode
end
getInboundMessage() click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 36
def getInboundMessage
  @inboundMessage
end
getLocation() click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 28
def getLocation
  @location
end
setAttachment(attachment) click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 52
def setAttachment(attachment)
  @attachment=attachment
end
setContentType(contentType) click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 24
def setContentType(contentType)
  @contentType=contentType
end
setHTTPResponseCode(httpResponseCode) click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 16
def setHTTPResponseCode(httpResponseCode)
  @httpResponseCode=httpResponseCode
end
setInboundMessage(inboundMessage) click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 40
def setInboundMessage(inboundMessage)
  @inboundMessage=inboundMessage
end
setInboundMessageJSON(jsondata) click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 44
def setInboundMessageJSON(jsondata)
  @inboundMessage=InboundMessage.new
  @inboundMessage.initializeJSON(jsondata)
end
setLocation(location) click to toggle source
# File lib/response/mms/RetrieveMMSMessageResponse.rb, line 32
def setLocation(location)
  @location=location
end