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
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 307 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
Returns The SID of the [Account](www.twilio.com/docs/api/rest/account) that created the Message resource.
351 352 353 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 351 def account_sid @properties['account_sid'] end |
#attributes ⇒ String
Returns The JSON string that stores application-specific data. Note If this property has been assigned a value, it’s only displayed in a FETCH action that returns a single resource; otherwise, it’s null. If the attributes have not been set, ‘{}` is returned.
357 358 359 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 357 def attributes @properties['attributes'] end |
#body ⇒ String
Returns The content of the message.
405 406 407 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 405 def body @properties['body'] end |
#channel_sid ⇒ String
Returns The unique ID of the [Channel](www.twilio.com/docs/api/chat/rest/channels) the Message resource belongs to.
375 376 377 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 375 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
336 337 338 339 340 341 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 336 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
Returns The date and time in GMT when the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
381 382 383 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 381 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT when the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
387 388 389 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 387 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the MessageInstance
424 425 426 427 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 424 def delete context.delete end |
#fetch ⇒ MessageInstance
Fetch the MessageInstance
432 433 434 435 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 432 def fetch context.fetch end |
#from ⇒ String
Returns The [identity](www.twilio.com/docs/api/chat/guides/identity) of the message’s author. The default value is ‘system`.
399 400 401 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 399 def from @properties['from'] end |
#index ⇒ String
Returns The index of the message within the [Channel](www.twilio.com/docs/chat/api/channels).
411 412 413 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 411 def index @properties['index'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
462 463 464 465 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 462 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Chat.V1.MessageInstance #{values}>" end |
#service_sid ⇒ String
Returns The SID of the [Service](www.twilio.com/docs/api/chat/rest/services) the resource is associated with.
363 364 365 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 363 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns The unique string that we created to identify the Message resource.
345 346 347 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 345 def sid @properties['sid'] end |
#to ⇒ String
Returns The SID of the [Channel](www.twilio.com/docs/chat/api/channels) that the message was sent to.
369 370 371 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 369 def to @properties['to'] end |
#to_s ⇒ Object
Provide a user friendly representation
455 456 457 458 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 455 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
442 443 444 445 446 447 448 449 450 451 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 442 def update( body: :unset, attributes: :unset ) context.update( body: body, attributes: attributes, ) end |
#url ⇒ String
Returns The absolute URL of the Message resource.
417 418 419 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 417 def url @properties['url'] end |
#was_edited ⇒ Boolean
Returns Whether the message has been edited since it was created.
393 394 395 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/message.rb', line 393 def was_edited @properties['was_edited'] end |