Class: MMSDeliveryReceiptSubscriptionResponse
- Inherits:
-
Object
- Object
- MMSDeliveryReceiptSubscriptionResponse
- Defined in:
- lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb
Instance Method Summary collapse
- #getContentType ⇒ Object
- #getDeliveryReceiptSubscription ⇒ Object
- #getHTTPResponseCode ⇒ Object
- #getLocation ⇒ Object
-
#initialize ⇒ MMSDeliveryReceiptSubscriptionResponse
constructor
A new instance of MMSDeliveryReceiptSubscriptionResponse.
- #setContentType(contentType) ⇒ Object
- #setDeliveryReceiptSubscription(deliveryReceiptSubscription) ⇒ Object
- #setDeliveryReceiptSubscriptionJSON(jsondata) ⇒ Object
- #setHTTPResponseCode(httpResponseCode) ⇒ Object
- #setLocation(location) ⇒ Object
Constructor Details
#initialize ⇒ MMSDeliveryReceiptSubscriptionResponse
Returns a new instance of MMSDeliveryReceiptSubscriptionResponse.
5 6 7 8 9 10 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 5 def initialize @httpResponseCode=0 @contentType=nil @location=nil @deliveryReceiptSubscription=nil end |
Instance Method Details
#getContentType ⇒ Object
20 21 22 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 20 def getContentType @contentType end |
#getDeliveryReceiptSubscription ⇒ Object
36 37 38 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 36 def getDeliveryReceiptSubscription @deliveryReceiptSubscription end |
#getHTTPResponseCode ⇒ Object
12 13 14 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 12 def getHTTPResponseCode @httpResponseCode end |
#getLocation ⇒ Object
28 29 30 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 28 def getLocation @location end |
#setContentType(contentType) ⇒ Object
24 25 26 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 24 def setContentType(contentType) @contentType=contentType end |
#setDeliveryReceiptSubscription(deliveryReceiptSubscription) ⇒ Object
40 41 42 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 40 def setDeliveryReceiptSubscription(deliveryReceiptSubscription) @deliveryReceiptSubscription=deliveryReceiptSubscription end |
#setDeliveryReceiptSubscriptionJSON(jsondata) ⇒ Object
44 45 46 47 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 44 def setDeliveryReceiptSubscriptionJSON(jsondata) @deliveryReceiptSubscription=DeliveryReceiptSubscription.new @deliveryReceiptSubscription.initializeJSON(jsondata) end |
#setHTTPResponseCode(httpResponseCode) ⇒ Object
16 17 18 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 16 def setHTTPResponseCode(httpResponseCode) @httpResponseCode=httpResponseCode end |
#setLocation(location) ⇒ Object
32 33 34 |
# File 'lib/response/mms/MMSDeliveryReceiptSubscriptionResponse.rb', line 32 def setLocation(location) @location=location end |