Class: Twilio::REST::FlexApi::V1::ChannelContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::FlexApi::V1::ChannelContext
- Defined in:
- lib/twilio-ruby/rest/flex_api/v1/channel.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the ChannelInstance.
-
#fetch ⇒ ChannelInstance
Fetch the ChannelInstance.
-
#initialize(version, sid) ⇒ ChannelContext
constructor
Initialize the ChannelContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ ChannelContext
Initialize the ChannelContext
181 182 183 184 185 186 187 188 189 |
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 181 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/Channels/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the ChannelInstance
193 194 195 196 197 198 |
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 193 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ ChannelInstance
Fetch the ChannelInstance
203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 203 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) ChannelInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
225 226 227 228 |
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 225 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.FlexApi.V1.ChannelContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
218 219 220 221 |
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 218 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.FlexApi.V1.ChannelContext #{context}>" end |