class SMSDeliveryReceiptSubscriptionResponse
Public Class Methods
new()
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 5 def initialize @httpResponseCode=0 @contentType=nil @location=nil @deliveryReceiptSubscription=nil end
Public Instance Methods
getContentType()
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 20 def getContentType @contentType end
getDeliveryReceiptSubscription()
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 36 def getDeliveryReceiptSubscription @deliveryReceiptSubscription end
getHTTPResponseCode()
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 12 def getHTTPResponseCode @httpResponseCode end
getLocation()
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 28 def getLocation @location end
setContentType(contentType)
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 24 def setContentType(contentType) @contentType=contentType end
setDeliveryReceiptSubscription(deliveryReceiptSubscription)
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 40 def setDeliveryReceiptSubscription(deliveryReceiptSubscription) @deliveryReceiptSubscription=deliveryReceiptSubscription end
setDeliveryReceiptSubscriptionJSON(jsondata)
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 44 def setDeliveryReceiptSubscriptionJSON(jsondata) @deliveryReceiptSubscription=DeliveryReceiptSubscription.new @deliveryReceiptSubscription.initializeJSON(jsondata) end
setHTTPResponseCode(httpResponseCode)
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 16 def setHTTPResponseCode(httpResponseCode) @httpResponseCode=httpResponseCode end
setLocation(location)
click to toggle source
# File lib/response/sms/SMSDeliveryReceiptSubscriptionResponse.rb, line 32 def setLocation(location) @location=location end