Class: Twilio::REST::Api::V2010::AccountContext::OutgoingCallerIdContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid, sid) ⇒ OutgoingCallerIdContext

Initialize the OutgoingCallerIdContext

Parameters:

  • version (Version)

    Version that contains the resource

  • account_sid (String)

    The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the OutgoingCallerId resources to update.

  • sid (String)

    The Twilio-provided string that uniquely identifies the OutgoingCallerId resource to update.



147
148
149
150
151
152
153
154
155
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 147

def initialize(version, , sid)
    super(version)

    # Path Solution
    @solution = { account_sid: , sid: sid,  }
    @uri = "/Accounts/#{@solution[:account_sid]}/OutgoingCallerIds/#{@solution[:sid]}.json"

    
end

Instance Method Details

#deleteBoolean

Delete the OutgoingCallerIdInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



159
160
161
162
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 159

def delete

    @version.delete('DELETE', @uri)
end

#fetchOutgoingCallerIdInstance

Fetch the OutgoingCallerIdInstance

Returns:



167
168
169
170
171
172
173
174
175
176
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 167

def fetch

    payload = @version.fetch('GET', @uri)
    OutgoingCallerIdInstance.new(
        @version,
        payload,
        account_sid: @solution[:account_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



209
210
211
212
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 209

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Api.V2010.OutgoingCallerIdContext #{context}>"
end

#to_sObject

Provide a user friendly representation



202
203
204
205
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 202

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

Parameters:

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

    A descriptive string that you create to describe the resource. It can be up to 64 characters long.

Returns:



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb', line 182

def update(
    friendly_name: :unset
)

    data = Twilio::Values.of({
        'FriendlyName' => friendly_name,
    })

    payload = @version.update('POST', @uri, data: data)
    OutgoingCallerIdInstance.new(
        @version,
        payload,
        account_sid: @solution[:account_sid],
        sid: @solution[:sid],
    )
end