Class: Twilio::REST::Conversations::V1::ServiceContext::BindingContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Conversations::V1::ServiceContext::BindingContext
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/service/binding.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the BindingInstance.
-
#fetch ⇒ BindingInstance
Fetch the BindingInstance.
-
#initialize(version, chat_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, chat_service_sid, sid) ⇒ BindingContext
Initialize the BindingContext
153 154 155 156 157 158 159 160 161 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 153 def initialize(version, chat_service_sid, sid) super(version) # Path Solution @solution = { chat_service_sid: chat_service_sid, sid: sid, } @uri = "/Services/#{@solution[:chat_service_sid]}/Bindings/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the BindingInstance
165 166 167 168 169 170 171 172 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 165 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
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 177 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) BindingInstance.new( @version, payload, chat_service_sid: @solution[:chat_service_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
204 205 206 207 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 204 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Conversations.V1.BindingContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
197 198 199 200 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 197 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Conversations.V1.BindingContext #{context}>" end |