Class: SuperReceptionist::Number

Inherits:
Object
  • Object
show all
Defined in:
lib/super_receptionist/number.rb

Instance Method Summary collapse

Constructor Details

#initialize(super_receptionist) ⇒ Number

Returns a new instance of Number.



3
4
5
# File 'lib/super_receptionist/number.rb', line 3

def initialize(super_receptionist)
  @super_receptionis = super_receptionist
end

Instance Method Details

#available(options = {}) ⇒ Object



7
8
9
# File 'lib/super_receptionist/number.rb', line 7

def available(options = {})
  SuperReceptionist.submit(:get, url('AvailablePhoneNumbers'), options)
end

#buy(options = {}) ⇒ Object



11
12
13
# File 'lib/super_receptionist/number.rb', line 11

def buy(options = {})
  SuperReceptionist.submit(:post, url, options)
end

#list(options = {}) ⇒ Object



15
16
17
# File 'lib/super_receptionist/number.rb', line 15

def list(options = {})
  SuperReceptionist.submit(:get, url, options)
end