Class: Twilio::REST::Trunking::V1::TrunkContext::PhoneNumberContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trunking::V1::TrunkContext::PhoneNumberContext
- Defined in:
- lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the PhoneNumberInstance.
-
#fetch ⇒ PhoneNumberInstance
Fetch the PhoneNumberInstance.
-
#initialize(version, trunk_sid, sid) ⇒ PhoneNumberContext
constructor
Initialize the PhoneNumberContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, trunk_sid, sid) ⇒ PhoneNumberContext
Initialize the PhoneNumberContext
170 171 172 173 174 175 176 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb', line 170 def initialize(version, trunk_sid, sid) super(version) # Path Solution @solution = {trunk_sid: trunk_sid, sid: sid, } @uri = "/Trunks/#{@solution[:trunk_sid]}/PhoneNumbers/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the PhoneNumberInstance
190 191 192 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb', line 190 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ PhoneNumberInstance
Fetch the PhoneNumberInstance
181 182 183 184 185 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb', line 181 def fetch payload = @version.fetch('GET', @uri) PhoneNumberInstance.new(@version, payload, trunk_sid: @solution[:trunk_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
203 204 205 206 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb', line 203 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.PhoneNumberContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
196 197 198 199 |
# File 'lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb', line 196 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trunking.V1.PhoneNumberContext #{context}>" end |