Class: Twilio::REST::FlexApi::V1::WebChannelContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ WebChannelContext

Initialize the WebChannelContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The SID of the WebChannel resource to update.



168
169
170
171
172
173
174
175
176
# File 'lib/twilio-ruby/rest/flex_api/v1/web_channel.rb', line 168

def initialize(version, sid)
    super(version)

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

    
end

Instance Method Details

#deleteBoolean

Delete the WebChannelInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



180
181
182
183
184
# File 'lib/twilio-ruby/rest/flex_api/v1/web_channel.rb', line 180

def delete

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

#fetchWebChannelInstance

Fetch the WebChannelInstance

Returns:



189
190
191
192
193
194
195
196
197
198
# File 'lib/twilio-ruby/rest/flex_api/v1/web_channel.rb', line 189

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



234
235
236
237
# File 'lib/twilio-ruby/rest/flex_api/v1/web_channel.rb', line 234

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

#to_sObject

Provide a user friendly representation



227
228
229
230
# File 'lib/twilio-ruby/rest/flex_api/v1/web_channel.rb', line 227

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

#update(chat_status: :unset, post_engagement_data: :unset) ⇒ WebChannelInstance

Update the WebChannelInstance

Parameters:

  • chat_status (ChatStatus) (defaults to: :unset)
  • post_engagement_data (String) (defaults to: :unset)

    The post-engagement data.

Returns:



205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/twilio-ruby/rest/flex_api/v1/web_channel.rb', line 205

def update(
    chat_status: :unset, 
    post_engagement_data: :unset
)

    data = Twilio::Values.of({
        'ChatStatus' => chat_status,
        'PostEngagementData' => post_engagement_data,
    })

    
    payload = @version.update('POST', @uri, data: data)
    WebChannelInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end