Class: Twilio::REST::Api::V2010::AccountContext::AvailablePhoneNumberCountryContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb,
lib/twilio-ruby/rest/api/v2010/account/available_phone_number/voip.rb,
lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb,
lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb,
lib/twilio-ruby/rest/api/v2010/account/available_phone_number/national.rb,
lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb,
lib/twilio-ruby/rest/api/v2010/account/available_phone_number/shared_cost.rb,
lib/twilio-ruby/rest/api/v2010/account/available_phone_number/machine_to_machine.rb

Defined Under Namespace

Classes: LocalInstance, LocalList, LocalPage, MachineToMachineInstance, MachineToMachineList, MachineToMachinePage, MobileInstance, MobileList, MobilePage, NationalInstance, NationalList, NationalPage, SharedCostInstance, SharedCostList, SharedCostPage, TollFreeInstance, TollFreeList, TollFreePage, VoipInstance, VoipList, VoipPage

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid, country_code) ⇒ AvailablePhoneNumberCountryContext

Initialize the AvailablePhoneNumberCountryContext

Parameters:



158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 158

def initialize(version, , country_code)
  super(version)

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

  # Dependents
  @local = nil
  @toll_free = nil
  @mobile = nil
  @national = nil
  @voip = nil
  @shared_cost = nil
  @machine_to_machine = nil
end

Instance Method Details

#fetchAvailablePhoneNumberCountryInstance

Fetch a AvailablePhoneNumberCountryInstance

Returns:



178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 178

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  AvailablePhoneNumberCountryInstance.new(
      @version,
      payload,
      account_sid: @solution[:account_sid],
      country_code: @solution[:country_code],
  )
end

#inspectObject

Provide a detailed, user friendly representation



316
317
318
319
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 316

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

#localLocalList, LocalContext

Access the local

Returns:



199
200
201
202
203
204
205
206
207
208
209
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 199

def local
  unless @local
    @local = LocalList.new(
        @version,
        account_sid: @solution[:account_sid],
        country_code: @solution[:country_code],
    )
  end

  @local
end

#machine_to_machineMachineToMachineList, MachineToMachineContext

Access the machine_to_machine

Returns:



295
296
297
298
299
300
301
302
303
304
305
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 295

def machine_to_machine
  unless @machine_to_machine
    @machine_to_machine = MachineToMachineList.new(
        @version,
        account_sid: @solution[:account_sid],
        country_code: @solution[:country_code],
    )
  end

  @machine_to_machine
end

#mobileMobileList, MobileContext

Access the mobile

Returns:



231
232
233
234
235
236
237
238
239
240
241
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 231

def mobile
  unless @mobile
    @mobile = MobileList.new(
        @version,
        account_sid: @solution[:account_sid],
        country_code: @solution[:country_code],
    )
  end

  @mobile
end

#nationalNationalList, NationalContext

Access the national

Returns:



247
248
249
250
251
252
253
254
255
256
257
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 247

def national
  unless @national
    @national = NationalList.new(
        @version,
        account_sid: @solution[:account_sid],
        country_code: @solution[:country_code],
    )
  end

  @national
end

#shared_costSharedCostList, SharedCostContext

Access the shared_cost

Returns:



279
280
281
282
283
284
285
286
287
288
289
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 279

def shared_cost
  unless @shared_cost
    @shared_cost = SharedCostList.new(
        @version,
        account_sid: @solution[:account_sid],
        country_code: @solution[:country_code],
    )
  end

  @shared_cost
end

#to_sObject

Provide a user friendly representation



309
310
311
312
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 309

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

#toll_freeTollFreeList, TollFreeContext

Access the toll_free

Returns:



215
216
217
218
219
220
221
222
223
224
225
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 215

def toll_free
  unless @toll_free
    @toll_free = TollFreeList.new(
        @version,
        account_sid: @solution[:account_sid],
        country_code: @solution[:country_code],
    )
  end

  @toll_free
end

#voipVoipList, VoipContext

Access the voip

Returns:



263
264
265
266
267
268
269
270
271
272
273
# File 'lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb', line 263

def voip
  unless @voip
    @voip = VoipList.new(
        @version,
        account_sid: @solution[:account_sid],
        country_code: @solution[:country_code],
    )
  end

  @voip
end