Class: Twilio::REST::Api::V2010::AccountContext::NotificationContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Api::V2010::AccountContext::NotificationContext
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/notification.rb
Instance Method Summary collapse
-
#fetch ⇒ NotificationInstance
Fetch the NotificationInstance.
-
#initialize(version, account_sid, sid) ⇒ NotificationContext
constructor
Initialize the NotificationContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, account_sid, sid) ⇒ NotificationContext
Initialize the NotificationContext
159 160 161 162 163 164 165 166 167 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 159 def initialize(version, account_sid, sid) super(version) # Path Solution @solution = { account_sid: account_sid, sid: sid, } @uri = "/Accounts/#{@solution[:account_sid]}/Notifications/#{@solution[:sid]}.json" end |
Instance Method Details
#fetch ⇒ NotificationInstance
Fetch the NotificationInstance
171 172 173 174 175 176 177 178 179 180 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 171 def fetch payload = @version.fetch('GET', @uri) NotificationInstance.new( @version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
192 193 194 195 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 192 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.NotificationContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
185 186 187 188 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 185 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.NotificationContext #{context}>" end |