Class: Twilio::REST::Notify::V1::ServiceContext::BindingContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Notify::V1::ServiceContext::BindingContext
- Defined in:
- lib/twilio-ruby/rest/notify/v1/service/binding.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the BindingInstance.
-
#fetch ⇒ BindingInstance
Fetch the BindingInstance.
-
#initialize(version, service_sid, sid) ⇒ BindingContext
constructor
Initialize the BindingContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, service_sid, sid) ⇒ BindingContext
Initialize the BindingContext
202 203 204 205 206 207 208 209 210 |
# File 'lib/twilio-ruby/rest/notify/v1/service/binding.rb', line 202 def initialize(version, service_sid, sid) super(version) # Path Solution @solution = { service_sid: service_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/Bindings/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the BindingInstance
214 215 216 217 218 219 |
# File 'lib/twilio-ruby/rest/notify/v1/service/binding.rb', line 214 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ BindingInstance
Fetch the BindingInstance
224 225 226 227 228 229 230 231 232 233 234 235 |
# File 'lib/twilio-ruby/rest/notify/v1/service/binding.rb', line 224 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) BindingInstance.new( @version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
247 248 249 250 |
# File 'lib/twilio-ruby/rest/notify/v1/service/binding.rb', line 247 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Notify.V1.BindingContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
240 241 242 243 |
# File 'lib/twilio-ruby/rest/notify/v1/service/binding.rb', line 240 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Notify.V1.BindingContext #{context}>" end |