Class: Twilio::REST::Api::V2010::AccountContext::MessageInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::MessageInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/message.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#api_version ⇒ String
The API version used to process the message.
-
#body ⇒ String
The message text.
-
#context ⇒ MessageContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The RFC 2822 date and time in GMT that the resource was created.
-
#date_sent ⇒ Time
The RFC 2822 date and time in GMT when the message was sent.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT that the resource was last updated.
-
#delete ⇒ Boolean
Delete the MessageInstance.
-
#direction ⇒ message.Direction
The direction of the message.
-
#error_code ⇒ String
The error code associated with the message.
-
#error_message ⇒ String
The description of the error_code.
-
#feedback ⇒ feedback
Access the feedback.
-
#fetch ⇒ MessageInstance
Fetch the MessageInstance.
-
#from ⇒ String
The phone number that initiated the message.
-
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ MessageInstance
constructor
Initialize the MessageInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#media ⇒ media
Access the media.
-
#messaging_service_sid ⇒ String
The SID of the Messaging Service used with the message.
-
#num_media ⇒ String
The number of media files associated with the message.
-
#num_segments ⇒ String
The number of messages used to deliver the message body.
-
#price ⇒ String
The amount billed for the message.
-
#price_unit ⇒ String
The currency in which price is measured.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#status ⇒ message.Status
The status of the message.
-
#subresource_uris ⇒ String
A list of related resources identified by their relative URIs.
-
#to ⇒ String
The phone number that received the message.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(body: :unset, status: :unset) ⇒ MessageInstance
Update the MessageInstance.
-
#uri ⇒ String
The URI of the resource, relative to ‘api.twilio.com`.
Constructor Details
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ MessageInstance
Initialize the MessageInstance
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 413 def initialize(version, payload, account_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'body' => payload['body'], 'num_segments' => payload['num_segments'], 'direction' => payload['direction'], 'from' => payload['from'], 'to' => payload['to'], 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), 'price' => payload['price'], 'error_message' => payload['error_message'], 'uri' => payload['uri'], 'account_sid' => payload['account_sid'], 'num_media' => payload['num_media'], 'status' => payload['status'], 'messaging_service_sid' => payload['messaging_service_sid'], 'sid' => payload['sid'], 'date_sent' => Twilio.deserialize_rfc2822(payload['date_sent']), 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'error_code' => payload['error_code'] == nil ? payload['error_code'] : payload['error_code'].to_i, 'price_unit' => payload['price_unit'], 'api_version' => payload['api_version'], 'subresource_uris' => payload['subresource_uris'], } # Context @instance_context = nil @params = {'account_sid' => account_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
512 513 514 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 512 def account_sid @properties['account_sid'] end |
#api_version ⇒ String
Returns The API version used to process the message.
566 567 568 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 566 def api_version @properties['api_version'] end |
#body ⇒ String
Returns The message text.
458 459 460 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 458 def body @properties['body'] 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
449 450 451 452 453 454 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 449 def context unless @instance_context @instance_context = MessageContext.new(@version, @params['account_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was created.
548 549 550 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 548 def date_created @properties['date_created'] end |
#date_sent ⇒ Time
Returns The RFC 2822 date and time in GMT when the message was sent.
542 543 544 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 542 def date_sent @properties['date_sent'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was last updated.
488 489 490 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 488 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the MessageInstance
579 580 581 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 579 def delete context.delete end |
#direction ⇒ message.Direction
Returns The direction of the message.
470 471 472 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 470 def direction @properties['direction'] end |
#error_code ⇒ String
Returns The error code associated with the message.
554 555 556 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 554 def error_code @properties['error_code'] end |
#error_message ⇒ String
Returns The description of the error_code.
500 501 502 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 500 def @properties['error_message'] end |
#feedback ⇒ feedback
Access the feedback
611 612 613 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 611 def feedback context.feedback end |
#fetch ⇒ MessageInstance
Fetch the MessageInstance
586 587 588 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 586 def fetch context.fetch end |
#from ⇒ String
Returns The phone number that initiated the message.
476 477 478 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 476 def from @properties['from'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
624 625 626 627 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 624 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.MessageInstance #{values}>" end |
#media ⇒ media
Access the media
604 605 606 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 604 def media context.media end |
#messaging_service_sid ⇒ String
Returns The SID of the Messaging Service used with the message.
530 531 532 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 530 def messaging_service_sid @properties['messaging_service_sid'] end |
#num_media ⇒ String
Returns The number of media files associated with the message.
518 519 520 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 518 def num_media @properties['num_media'] end |
#num_segments ⇒ String
Returns The number of messages used to deliver the message body.
464 465 466 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 464 def num_segments @properties['num_segments'] end |
#price ⇒ String
Returns The amount billed for the message.
494 495 496 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 494 def price @properties['price'] end |
#price_unit ⇒ String
Returns The currency in which price is measured.
560 561 562 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 560 def price_unit @properties['price_unit'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
536 537 538 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 536 def sid @properties['sid'] end |
#status ⇒ message.Status
Returns The status of the message.
524 525 526 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 524 def status @properties['status'] end |
#subresource_uris ⇒ String
Returns A list of related resources identified by their relative URIs.
572 573 574 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 572 def subresource_uris @properties['subresource_uris'] end |
#to ⇒ String
Returns The phone number that received the message.
482 483 484 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 482 def to @properties['to'] end |
#to_s ⇒ Object
Provide a user friendly representation
617 618 619 620 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 617 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.MessageInstance #{values}>" end |
#update(body: :unset, status: :unset) ⇒ MessageInstance
Update the MessageInstance
597 598 599 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 597 def update(body: :unset, status: :unset) context.update(body: body, status: status, ) end |
#uri ⇒ String
Returns The URI of the resource, relative to ‘api.twilio.com`.
506 507 508 |
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 506 def uri @properties['uri'] end |