Module: Washbullet::API::Contacts

Included in:
Washbullet::API
Defined in:
lib/washbullet/api/contacts.rb

Instance Method Summary collapse

Instance Method Details

#contactsObject



4
5
6
7
8
# File 'lib/washbullet/api/contacts.rb', line 4

def contacts
  response = get('/v2/contacts')

  Washbullet::Contact.from_response(response)
end

#create_contactObject

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/washbullet/api/contacts.rb', line 10

def create_contact
  raise NotImplementedError
end

#delete_contactObject

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/washbullet/api/contacts.rb', line 18

def delete_contact
  raise NotImplementedError
end

#update_contactObject

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/washbullet/api/contacts.rb', line 14

def update_contact
  raise NotImplementedError
end