Class: Twilio::REST::Preview::TrustedComms::CurrentCallContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Preview::TrustedComms::CurrentCallContext
- Defined in:
- lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb
Overview
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected]
Instance Method Summary collapse
-
#fetch(x_xcnam_sensitive_phone_number_from: :unset, x_xcnam_sensitive_phone_number_to: :unset) ⇒ CurrentCallInstance
Fetch the CurrentCallInstance.
-
#initialize(version) ⇒ CurrentCallContext
constructor
Initialize the CurrentCallContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version) ⇒ CurrentCallContext
Initialize the CurrentCallContext
72 73 74 75 76 77 78 |
# File 'lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb', line 72 def initialize(version) super(version) # Path Solution @solution = {} @uri = "/CurrentCall" end |
Instance Method Details
#fetch(x_xcnam_sensitive_phone_number_from: :unset, x_xcnam_sensitive_phone_number_to: :unset) ⇒ CurrentCallInstance
Fetch the CurrentCallInstance
89 90 91 92 93 94 95 96 97 98 |
# File 'lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb', line 89 def fetch(x_xcnam_sensitive_phone_number_from: :unset, x_xcnam_sensitive_phone_number_to: :unset) headers = Twilio::Values.of({ 'X-Xcnam-Sensitive-Phone-Number-From' => x_xcnam_sensitive_phone_number_from, 'X-Xcnam-Sensitive-Phone-Number-To' => x_xcnam_sensitive_phone_number_to, }) payload = @version.fetch('GET', @uri, headers: headers) CurrentCallInstance.new(@version, payload, ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
109 110 111 112 |
# File 'lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb', line 109 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.TrustedComms.CurrentCallContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
102 103 104 105 |
# File 'lib/twilio-ruby/rest/preview/trusted_comms/current_call.rb', line 102 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.TrustedComms.CurrentCallContext #{context}>" end |