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
163 164 165 166 167 168 169 170 171 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 163 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
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 175 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) NotificationInstance.new( @version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
202 203 204 205 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 202 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.NotificationContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
195 196 197 198 |
# File 'lib/twilio-ruby/rest/api/v2010/account/notification.rb', line 195 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.NotificationContext #{context}>" end |