Class: Twilio::REST::Api::V2010::AccountContext::MessageInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/message.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, account_sid: nil, sid: nil) ⇒ MessageInstance

Initialize the MessageInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The SID of the Account that sent the message that created the resource.

  • sid (String) (defaults to: nil)

    The Twilio-provided string that uniquely identifies the Message resource to fetch.



428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 428

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' => , 'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource



527
528
529
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 527

def 
  @properties['account_sid']
end

#api_versionString

Returns The API version used to process the message.

Returns:

  • (String)

    The API version used to process the message



581
582
583
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 581

def api_version
  @properties['api_version']
end

#bodyString

Returns The message text.

Returns:

  • (String)

    The message text



473
474
475
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 473

def body
  @properties['body']
end

#contextMessageContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



464
465
466
467
468
469
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 464

def context
  unless @instance_context
    @instance_context = MessageContext.new(@version, @params['account_sid'], @params['sid'], )
  end
  @instance_context
end

#date_createdTime

Returns The RFC 2822 date and time in GMT that the resource was created.

Returns:

  • (Time)

    The RFC 2822 date and time in GMT that the resource was created



563
564
565
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 563

def date_created
  @properties['date_created']
end

#date_sentTime

Returns The RFC 2822 date and time in GMT when the message was sent.

Returns:

  • (Time)

    The RFC 2822 date and time in GMT when the message was sent



557
558
559
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 557

def date_sent
  @properties['date_sent']
end

#date_updatedTime

Returns The RFC 2822 date and time in GMT that the resource was last updated.

Returns:

  • (Time)

    The RFC 2822 date and time in GMT that the resource was last updated



503
504
505
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 503

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Delete the MessageInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



594
595
596
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 594

def delete
  context.delete
end

#directionmessage.Direction

Returns The direction of the message.

Returns:

  • (message.Direction)

    The direction of the message



485
486
487
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 485

def direction
  @properties['direction']
end

#error_codeString

Returns The error code associated with the message.

Returns:

  • (String)

    The error code associated with the message



569
570
571
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 569

def error_code
  @properties['error_code']
end

#error_messageString

Returns The description of the error_code.

Returns:

  • (String)

    The description of the error_code



515
516
517
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 515

def error_message
  @properties['error_message']
end

#feedbackfeedback

Access the feedback

Returns:



626
627
628
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 626

def feedback
  context.feedback
end

#fetchMessageInstance

Fetch the MessageInstance

Returns:



601
602
603
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 601

def fetch
  context.fetch
end

#fromString

Returns The phone number that initiated the message.

Returns:

  • (String)

    The phone number that initiated the message



491
492
493
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 491

def from
  @properties['from']
end

#inspectObject

Provide a detailed, user friendly representation



639
640
641
642
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 639

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Api.V2010.MessageInstance #{values}>"
end

#mediamedia

Access the media

Returns:



619
620
621
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 619

def media
  context.media
end

#messaging_service_sidString

Returns The SID of the Messaging Service used with the message.

Returns:

  • (String)

    The SID of the Messaging Service used with the message.



545
546
547
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 545

def messaging_service_sid
  @properties['messaging_service_sid']
end

#num_mediaString

Returns The number of media files associated with the message.

Returns:

  • (String)

    The number of media files associated with the message



533
534
535
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 533

def num_media
  @properties['num_media']
end

#num_segmentsString

Returns The number of messages used to deliver the message body.

Returns:

  • (String)

    The number of messages used to deliver the message body



479
480
481
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 479

def num_segments
  @properties['num_segments']
end

#priceString

Returns The amount billed for the message.

Returns:

  • (String)

    The amount billed for the message



509
510
511
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 509

def price
  @properties['price']
end

#price_unitString

Returns The currency in which price is measured.

Returns:

  • (String)

    The currency in which price is measured



575
576
577
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 575

def price_unit
  @properties['price_unit']
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource



551
552
553
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 551

def sid
  @properties['sid']
end

#statusmessage.Status

Returns The status of the message.

Returns:

  • (message.Status)

    The status of the message



539
540
541
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 539

def status
  @properties['status']
end

#subresource_urisString

Returns A list of related resources identified by their relative URIs.

Returns:

  • (String)

    A list of related resources identified by their relative URIs



587
588
589
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 587

def subresource_uris
  @properties['subresource_uris']
end

#toString

Returns The phone number that received the message.

Returns:

  • (String)

    The phone number that received the message



497
498
499
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 497

def to
  @properties['to']
end

#to_sObject

Provide a user friendly representation



632
633
634
635
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 632

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

Parameters:

  • body (String) (defaults to: :unset)

    The text of the message you want to send. Can be up to 1,600 characters long.

  • status (message.UpdateStatus) (defaults to: :unset)

    When set as ‘canceled`, allows a message cancelation request if a message has not yet been sent.

Returns:



612
613
614
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 612

def update(body: :unset, status: :unset)
  context.update(body: body, status: status, )
end

#uriString

Returns The URI of the resource, relative to ‘api.twilio.com`.

Returns:

  • (String)

    The URI of the resource, relative to ‘api.twilio.com`



521
522
523
# File 'lib/twilio-ruby/rest/api/v2010/account/message.rb', line 521

def uri
  @properties['uri']
end