Class: Twilio::REST::Chat::V1::ServiceContext::ChannelContext::MessageInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Chat::V1::ServiceContext::ChannelContext::MessageInstance
- Defined in:
- lib/twilio-ruby/rest/chat/v1/service/channel/message.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/api/rest/account) that created the Message resource.
-
#attributes ⇒ String
The JSON string that stores application-specific data.
-
#body ⇒ String
The content of the message.
-
#channel_sid ⇒ String
The unique ID of the [Channel](www.twilio.com/docs/api/chat/rest/channels) the Message resource belongs to.
-
#context ⇒ MessageContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT when the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#date_updated ⇒ Time
The date and time in GMT when the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#delete ⇒ Boolean
Delete the MessageInstance.
-
#fetch ⇒ MessageInstance
Fetch the MessageInstance.
-
#from ⇒ String
The [identity](www.twilio.com/docs/api/chat/guides/identity) of the message’s author.
-
#index ⇒ String
The index of the message within the [Channel](www.twilio.com/docs/chat/api/channels).
-
#initialize(version, payload, service_sid: nil, channel_sid: nil, sid: nil) ⇒ MessageInstance
constructor
Initialize the MessageInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#service_sid ⇒ String
The SID of the [Service](www.twilio.com/docs/api/chat/rest/services) the resource is associated with.
-
#sid ⇒ String
The unique string that we created to identify the Message resource.
-
#to ⇒ String
The SID of the [Channel](www.twilio.com/docs/chat/api/channels) that the message was sent to.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(body: :unset, attributes: :unset) ⇒ MessageInstance
Update the MessageInstance.
-
#url ⇒ String
The absolute URL of the Message resource.
-
#was_edited ⇒ Boolean
Whether the message has been edited since it was created.
Constructor Details
#initialize(version, payload, service_sid: nil, channel_sid: nil, sid: nil) ⇒ MessageInstance
Initialize the MessageInstance
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 290 def initialize(version, payload , service_sid: nil, channel_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'attributes' => payload['attributes'], 'service_sid' => payload['service_sid'], 'to' => payload['to'], 'channel_sid' => payload['channel_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'was_edited' => payload['was_edited'], 'from' => payload['from'], 'body' => payload['body'], 'index' => payload['index'] == nil ? payload['index'] : payload['index'].to_i, 'url' => payload['url'], } # Context @instance_context = nil @params = { 'service_sid' => service_sid || @properties['service_sid'] ,'channel_sid' => channel_sid || @properties['channel_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
334 335 336 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 334 def account_sid @properties['account_sid'] end |
#attributes ⇒ String
340 341 342 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 340 def attributes @properties['attributes'] end |
#body ⇒ String
388 389 390 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 388 def body @properties['body'] end |
#channel_sid ⇒ String
358 359 360 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 358 def channel_sid @properties['channel_sid'] end |
#context ⇒ MessageContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
319 320 321 322 323 324 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 319 def context unless @instance_context @instance_context = MessageContext.new(@version , @params['service_sid'], @params['channel_sid'], @params['sid']) end @instance_context end |
#date_created ⇒ Time
364 365 366 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 364 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
370 371 372 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 370 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the MessageInstance
407 408 409 410 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 407 def delete context.delete end |
#fetch ⇒ MessageInstance
Fetch the MessageInstance
415 416 417 418 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 415 def fetch context.fetch end |
#from ⇒ String
382 383 384 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 382 def from @properties['from'] end |
#index ⇒ String
394 395 396 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 394 def index @properties['index'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
445 446 447 448 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 445 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Chat.V1.MessageInstance #{values}>" end |
#service_sid ⇒ String
346 347 348 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 346 def service_sid @properties['service_sid'] end |
#sid ⇒ String
328 329 330 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 328 def sid @properties['sid'] end |
#to ⇒ String
352 353 354 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 352 def to @properties['to'] end |
#to_s ⇒ Object
Provide a user friendly representation
438 439 440 441 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 438 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Chat.V1.MessageInstance #{values}>" end |
#update(body: :unset, attributes: :unset) ⇒ MessageInstance
Update the MessageInstance
425 426 427 428 429 430 431 432 433 434 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 425 def update( body: :unset, attributes: :unset ) context.update( body: body, attributes: attributes, ) end |
#url ⇒ String
400 401 402 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 400 def url @properties['url'] end |
#was_edited ⇒ Boolean
376 377 378 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 376 def was_edited @properties['was_edited'] end |