Class: Twilio::REST::Api::V2010::AccountContext::CallInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::CallInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/call.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created this resource.
-
#annotation ⇒ String
The annotation provided for the call.
-
#answered_by ⇒ String
Either ‘human` or `machine` if this call was initiated with answering machine detection.
-
#api_version ⇒ String
The API Version used to create the call.
-
#caller_name ⇒ String
The caller’s name if this call was an incoming call to a phone number with caller ID Lookup enabled.
-
#context ⇒ CallContext
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 this resource was created.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT that this resource was last updated.
-
#delete ⇒ Boolean
Deletes the CallInstance.
-
#direction ⇒ String
A string describing the direction of the call.
-
#duration ⇒ String
The length of the call in seconds.
-
#end_time ⇒ Time
The end time of the call.
-
#feedback ⇒ feedback
Access the feedback.
-
#fetch ⇒ CallInstance
Fetch a CallInstance.
-
#forwarded_from ⇒ String
The forwarding phone number if this call was an incoming call forwarded from another number (depends on carrier supporting forwarding).
-
#from ⇒ String
The phone number, SIP address or Client identifier that made this call.
-
#from_formatted ⇒ String
The calling phone number, SIP address, or Client identifier formatted for display.
-
#group_sid ⇒ String
The Group SID associated with this call.
-
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ CallInstance
constructor
Initialize the CallInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#notifications ⇒ notifications
Access the notifications.
-
#parent_call_sid ⇒ String
The SID that identifies the call that created this leg.
-
#phone_number_sid ⇒ String
If the call was inbound, this is the SID of the IncomingPhoneNumber resource that received the call.
-
#price ⇒ String
The charge for this call, in the currency associated with the account.
-
#price_unit ⇒ String
The currency in which ‘Price` is measured.
-
#recordings ⇒ recordings
Access the recordings.
-
#sid ⇒ String
The unique string that identifies this resource.
-
#start_time ⇒ Time
The start time of the call.
-
#status ⇒ call.Status
The status of this call.
-
#subresource_uris ⇒ String
A list of related subresources identified by their relative URIs.
-
#to ⇒ String
The phone number, SIP address or Client identifier that received this call.
-
#to_formatted ⇒ String
The phone number, SIP address or Client identifier that received this call.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(url: :unset, method: :unset, status: :unset, fallback_url: :unset, fallback_method: :unset, status_callback: :unset, status_callback_method: :unset, twiml: :unset) ⇒ CallInstance
Update the CallInstance.
-
#uri ⇒ String
The URI of this resource, relative to ‘api.twilio.com`.
Constructor Details
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ CallInstance
Initialize the CallInstance
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 567 def initialize(version, payload, account_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'annotation' => payload['annotation'], 'answered_by' => payload['answered_by'], 'api_version' => payload['api_version'], 'caller_name' => payload['caller_name'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), 'direction' => payload['direction'], 'duration' => payload['duration'], 'end_time' => Twilio.deserialize_rfc2822(payload['end_time']), 'forwarded_from' => payload['forwarded_from'], 'from' => payload['from'], 'from_formatted' => payload['from_formatted'], 'group_sid' => payload['group_sid'], 'parent_call_sid' => payload['parent_call_sid'], 'phone_number_sid' => payload['phone_number_sid'], 'price' => payload['price'].to_f, 'price_unit' => payload['price_unit'], 'sid' => payload['sid'], 'start_time' => Twilio.deserialize_rfc2822(payload['start_time']), 'status' => payload['status'], 'subresource_uris' => payload['subresource_uris'], 'to' => payload['to'], 'to_formatted' => payload['to_formatted'], 'uri' => payload['uri'], } # 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 this resource.
617 618 619 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 617 def account_sid @properties['account_sid'] end |
#annotation ⇒ String
Returns The annotation provided for the call.
623 624 625 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 623 def annotation @properties['annotation'] end |
#answered_by ⇒ String
Returns Either ‘human` or `machine` if this call was initiated with answering machine detection. Empty otherwise.
629 630 631 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 629 def answered_by @properties['answered_by'] end |
#api_version ⇒ String
Returns The API Version used to create the call.
635 636 637 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 635 def api_version @properties['api_version'] end |
#caller_name ⇒ String
Returns The caller’s name if this call was an incoming call to a phone number with caller ID Lookup enabled. Otherwise, empty.
641 642 643 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 641 def caller_name @properties['caller_name'] end |
#context ⇒ CallContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
608 609 610 611 612 613 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 608 def context unless @instance_context @instance_context = CallContext.new(@version, @params['account_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The RFC 2822 date and time in GMT that this resource was created.
647 648 649 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 647 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT that this resource was last updated.
653 654 655 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 653 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the CallInstance
768 769 770 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 768 def delete context.delete end |
#direction ⇒ String
Returns A string describing the direction of the call. ‘inbound` for inbound calls, `outbound-api` for calls initiated via the REST API or `outbound-dial` for calls initiated by a `Dial` verb.
659 660 661 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 659 def direction @properties['direction'] end |
#duration ⇒ String
Returns The length of the call in seconds.
665 666 667 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 665 def duration @properties['duration'] end |
#end_time ⇒ Time
Returns The end time of the call. Null if the call did not complete successfully.
671 672 673 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 671 def end_time @properties['end_time'] end |
#feedback ⇒ feedback
Access the feedback
841 842 843 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 841 def feedback context.feedback end |
#fetch ⇒ CallInstance
Fetch a CallInstance
775 776 777 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 775 def fetch context.fetch end |
#forwarded_from ⇒ String
Returns The forwarding phone number if this call was an incoming call forwarded from another number (depends on carrier supporting forwarding). Otherwise, empty.
677 678 679 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 677 def forwarded_from @properties['forwarded_from'] end |
#from ⇒ String
Returns The phone number, SIP address or Client identifier that made this call. Phone numbers are in E.164 format (e.g., +16175551212). SIP addresses are formatted as ‘[email protected]`. Client identifiers are formatted `client:name`.
683 684 685 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 683 def from @properties['from'] end |
#from_formatted ⇒ String
Returns The calling phone number, SIP address, or Client identifier formatted for display.
689 690 691 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 689 def from_formatted @properties['from_formatted'] end |
#group_sid ⇒ String
Returns The Group SID associated with this call. If no Group is associated with the call, the field is empty.
695 696 697 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 695 def group_sid @properties['group_sid'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
854 855 856 857 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 854 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.CallInstance #{values}>" end |
#notifications ⇒ notifications
Access the notifications
834 835 836 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 834 def notifications context.notifications end |
#parent_call_sid ⇒ String
Returns The SID that identifies the call that created this leg.
701 702 703 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 701 def parent_call_sid @properties['parent_call_sid'] end |
#phone_number_sid ⇒ String
Returns If the call was inbound, this is the SID of the IncomingPhoneNumber resource that received the call. If the call was outbound, it is the SID of the OutgoingCallerId resource from which the call was placed.
707 708 709 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 707 def phone_number_sid @properties['phone_number_sid'] end |
#price ⇒ String
Returns The charge for this call, in the currency associated with the account. Populated after the call is completed. May not be immediately available.
713 714 715 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 713 def price @properties['price'] end |
#price_unit ⇒ String
Returns The currency in which ‘Price` is measured.
719 720 721 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 719 def price_unit @properties['price_unit'] end |
#recordings ⇒ recordings
Access the recordings
827 828 829 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 827 def recordings context.recordings end |
#sid ⇒ String
Returns The unique string that identifies this resource.
725 726 727 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 725 def sid @properties['sid'] end |
#start_time ⇒ Time
Returns The start time of the call. Null if the call has not yet been dialed.
731 732 733 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 731 def start_time @properties['start_time'] end |
#status ⇒ call.Status
Returns The status of this call.
737 738 739 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 737 def status @properties['status'] end |
#subresource_uris ⇒ String
Returns A list of related subresources identified by their relative URIs.
743 744 745 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 743 def subresource_uris @properties['subresource_uris'] end |
#to ⇒ String
Returns The phone number, SIP address or Client identifier that received this call. Phone numbers are in E.164 format (e.g., +16175551212). SIP addresses are formatted as ‘[email protected]`. Client identifiers are formatted `client:name`.
749 750 751 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 749 def to @properties['to'] end |
#to_formatted ⇒ String
Returns The phone number, SIP address or Client identifier that received this call. Formatted for display.
755 756 757 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 755 def to_formatted @properties['to_formatted'] end |
#to_s ⇒ Object
Provide a user friendly representation
847 848 849 850 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 847 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.CallInstance #{values}>" end |
#update(url: :unset, method: :unset, status: :unset, fallback_url: :unset, fallback_method: :unset, status_callback: :unset, status_callback_method: :unset, twiml: :unset) ⇒ CallInstance
Update the CallInstance
811 812 813 814 815 816 817 818 819 820 821 822 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 811 def update(url: :unset, method: :unset, status: :unset, fallback_url: :unset, fallback_method: :unset, status_callback: :unset, status_callback_method: :unset, twiml: :unset) context.update( url: url, method: method, status: status, fallback_url: fallback_url, fallback_method: fallback_method, status_callback: status_callback, status_callback_method: status_callback_method, twiml: twiml, ) end |
#uri ⇒ String
Returns The URI of this resource, relative to ‘api.twilio.com`.
761 762 763 |
# File 'lib/twilio-ruby/rest/api/v2010/account/call.rb', line 761 def uri @properties['uri'] end |