Class: Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdContext
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the OutgoingCallerIdInstance.
-
#delete_with_metadata ⇒ Boolean
Delete the OutgoingCallerIdInstanceMetadata.
-
#fetch ⇒ OutgoingCallerIdInstance
Fetch the OutgoingCallerIdInstance.
-
#fetch_with_metadata ⇒ OutgoingCallerIdInstance
Fetch the OutgoingCallerIdInstanceMetadata.
-
#initialize(version, account_sid, sid) ⇒ OutgoingCallerIdContext
constructor
Initialize the OutgoingCallerIdContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset) ⇒ OutgoingCallerIdInstance
Update the OutgoingCallerIdInstance.
-
#update_with_metadata(friendly_name: :unset) ⇒ OutgoingCallerIdInstance
Update the OutgoingCallerIdInstanceMetadata.
Constructor Details
#initialize(version, account_sid, sid) ⇒ OutgoingCallerIdContext
Initialize the OutgoingCallerIdContext
186 187 188 189 190 191 192 193 194 195 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 186 def initialize(version, account_sid, sid) super(version) # Path Solution @solution = { account_sid: account_sid, sid: sid, } @uri = "/Accounts/#{@solution[:account_sid]}/OutgoingCallerIds/#{@solution[:sid]}.json" end |
Instance Method Details
#delete ⇒ Boolean
Delete the OutgoingCallerIdInstance
199 200 201 202 203 204 205 206 207 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 199 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#delete_with_metadata ⇒ Boolean
Delete the OutgoingCallerIdInstanceMetadata
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 212 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('DELETE', @uri, headers: headers) outgoingCallerId_instance = OutgoingCallerIdInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) OutgoingCallerIdInstanceMetadata.new(@version, outgoingCallerId_instance, response.headers, response.status_code) end |
#fetch ⇒ OutgoingCallerIdInstance
Fetch the OutgoingCallerIdInstance
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 231 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) OutgoingCallerIdInstance.new( @version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end |
#fetch_with_metadata ⇒ OutgoingCallerIdInstance
Fetch the OutgoingCallerIdInstanceMetadata
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 251 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('GET', @uri, headers: headers) outgoing_caller_id_instance = OutgoingCallerIdInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) OutgoingCallerIdInstanceMetadata.new( @version, outgoing_caller_id_instance, response.headers, response.status_code ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
344 345 346 347 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 344 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.OutgoingCallerIdContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
337 338 339 340 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 337 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Api.V2010.OutgoingCallerIdContext #{context}>" end |
#update(friendly_name: :unset) ⇒ OutgoingCallerIdInstance
Update the OutgoingCallerIdInstance
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 278 def update( friendly_name: :unset ) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) OutgoingCallerIdInstance.new( @version, payload, account_sid: @solution[:account_sid], sid: @solution[:sid], ) end |
#update_with_metadata(friendly_name: :unset) ⇒ OutgoingCallerIdInstance
Update the OutgoingCallerIdInstanceMetadata
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 |
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 305 def ( friendly_name: :unset ) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('POST', @uri, data: data, headers: headers) outgoing_caller_id_instance = OutgoingCallerIdInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) OutgoingCallerIdInstanceMetadata.new( @version, outgoing_caller_id_instance, response.headers, response.status_code ) end |