Class: Twilio::REST::Conversations::V1::ServiceContext::UserContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Conversations::V1::ServiceContext::UserContext
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/service/user.rb
Instance Method Summary collapse
-
#delete(x_twilio_webhook_enabled: :unset) ⇒ Boolean
Delete the UserInstance.
-
#fetch ⇒ UserInstance
Fetch the UserInstance.
-
#initialize(version, chat_service_sid, sid) ⇒ UserContext
constructor
Initialize the UserContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, attributes: :unset, role_sid: :unset, x_twilio_webhook_enabled: :unset) ⇒ UserInstance
Update the UserInstance.
Constructor Details
#initialize(version, chat_service_sid, sid) ⇒ UserContext
Initialize the UserContext
186 187 188 189 190 191 192 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/user.rb', line 186 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]}/Users/#{@solution[:sid]}" end |
Instance Method Details
#delete(x_twilio_webhook_enabled: :unset) ⇒ Boolean
Delete the UserInstance
229 230 231 232 233 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/user.rb', line 229 def delete(x_twilio_webhook_enabled: :unset) headers = Twilio::Values.of({'X-Twilio-Webhook-Enabled' => x_twilio_webhook_enabled, }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ UserInstance
Fetch the UserInstance
238 239 240 241 242 243 244 245 246 247 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/user.rb', line 238 def fetch payload = @version.fetch('GET', @uri) UserInstance.new( @version, payload, chat_service_sid: @solution[:chat_service_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
258 259 260 261 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/user.rb', line 258 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Conversations.V1.UserContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
251 252 253 254 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/user.rb', line 251 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Conversations.V1.UserContext #{context}>" end |
#update(friendly_name: :unset, attributes: :unset, role_sid: :unset, x_twilio_webhook_enabled: :unset) ⇒ UserInstance
Update the UserInstance
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/user.rb', line 206 def update(friendly_name: :unset, attributes: :unset, role_sid: :unset, x_twilio_webhook_enabled: :unset) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, 'Attributes' => attributes, 'RoleSid' => role_sid, }) headers = Twilio::Values.of({'X-Twilio-Webhook-Enabled' => x_twilio_webhook_enabled, }) payload = @version.update('POST', @uri, data: data, headers: headers) UserInstance.new( @version, payload, chat_service_sid: @solution[:chat_service_sid], sid: @solution[:sid], ) end |