class RetrieveSMSResponse

Public Class Methods

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

Public Instance Methods

getContentType() click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 20
def getContentType
  @contentType
end
getHTTPResponseCode() click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 12
def getHTTPResponseCode
  @httpResponseCode
end
getInboundSMSMessageList() click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 36
def getInboundSMSMessageList
  @inboundSMSMessageList
end
getLocation() click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 28
def getLocation
  @location
end
setContentType(contentType) click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 24
def setContentType(contentType)
  @contentType=contentType
end
setHTTPResponseCode(httpResponseCode) click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 16
def setHTTPResponseCode(httpResponseCode)
  @httpResponseCode=httpResponseCode
end
setInboundSMSMessageList(inboundSMSMessageList) click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 40
def setInboundSMSMessageList(inboundSMSMessageList)
  @inboundSMSMessageList=inboundSMSMessageList
end
setInboundSMSMessageListJSON(jsondata) click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 44
def setInboundSMSMessageListJSON(jsondata)
  @inboundSMSMessageList=InboundSMSMessageList.new
  @inboundSMSMessageList.initializeJSON(jsondata)
end
setLocation(location) click to toggle source
# File lib/response/sms/RetrieveSMSResponse.rb, line 32
def setLocation(location)
  @location=location
end