Class: Twilio::REST::FlexApi::V1::ChannelContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/flex_api/v1/channel.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ ChannelContext

Initialize the ChannelContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The SID of the Flex chat channel resource to fetch.



178
179
180
181
182
183
184
185
186
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 178

def initialize(version, sid)
    super(version)

    # Path Solution
    @solution = { sid: sid,  }
    @uri = "/Channels/#{@solution[:sid]}"

    
end

Instance Method Details

#deleteBoolean

Delete the ChannelInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



190
191
192
193
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 190

def delete

    @version.delete('DELETE', @uri)
end

#fetchChannelInstance

Fetch the ChannelInstance

Returns:



198
199
200
201
202
203
204
205
206
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 198

def fetch

    payload = @version.fetch('GET', @uri)
    ChannelInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



218
219
220
221
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 218

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.FlexApi.V1.ChannelContext #{context}>"
end

#to_sObject

Provide a user friendly representation



211
212
213
214
# File 'lib/twilio-ruby/rest/flex_api/v1/channel.rb', line 211

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.FlexApi.V1.ChannelContext #{context}>"
end