Class: Twilio::REST::IpMessaging::V2::ServiceContext::UserContext::UserChannelContext
- Inherits:
-
Twilio::REST::InstanceContext
- Object
- Twilio::REST::InstanceContext
- Twilio::REST::IpMessaging::V2::ServiceContext::UserContext::UserChannelContext
- Defined in:
- lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Deletes the UserChannelInstance.
-
#fetch ⇒ UserChannelInstance
Fetch a UserChannelInstance.
-
#initialize(version, service_sid, user_sid, channel_sid) ⇒ UserChannelContext
constructor
Initialize the UserChannelContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(notification_level: :unset, last_consumed_message_index: :unset, last_consumption_timestamp: :unset) ⇒ UserChannelInstance
Update the UserChannelInstance.
Constructor Details
#initialize(version, service_sid, user_sid, channel_sid) ⇒ UserChannelContext
Initialize the UserChannelContext
173 174 175 176 177 178 179 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 173 def initialize(version, service_sid, user_sid, channel_sid) super(version) # Path Solution @solution = {service_sid: service_sid, user_sid: user_sid, channel_sid: channel_sid, } @uri = "/Services/#{@solution[:service_sid]}/Users/#{@solution[:user_sid]}/Channels/#{@solution[:channel_sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Deletes the UserChannelInstance
205 206 207 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 205 def delete @version.delete('delete', @uri) end |
#fetch ⇒ UserChannelInstance
Fetch a UserChannelInstance
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 184 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) UserChannelInstance.new( @version, payload, service_sid: @solution[:service_sid], user_sid: @solution[:user_sid], channel_sid: @solution[:channel_sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
252 253 254 255 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 252 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.IpMessaging.V2.UserChannelContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
245 246 247 248 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 245 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.IpMessaging.V2.UserChannelContext #{context}>" end |
#update(notification_level: :unset, last_consumed_message_index: :unset, last_consumption_timestamp: :unset) ⇒ UserChannelInstance
Update the UserChannelInstance
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 221 def update(notification_level: :unset, last_consumed_message_index: :unset, last_consumption_timestamp: :unset) data = Twilio::Values.of({ 'NotificationLevel' => notification_level, 'LastConsumedMessageIndex' => , 'LastConsumptionTimestamp' => Twilio.serialize_iso8601_datetime(), }) payload = @version.update( 'POST', @uri, data: data, ) UserChannelInstance.new( @version, payload, service_sid: @solution[:service_sid], user_sid: @solution[:user_sid], channel_sid: @solution[:channel_sid], ) end |