Module: YouCanBookMe::Client::Account
Constant Summary
YouCanBookMe::Connection::API::BASE_URL
Instance Method Summary
collapse
Instance Method Details
#destroy(params = {}) ⇒ Object
18
19
20
|
# File 'lib/YouCanBookMe/client/account.rb', line 18
def destroy(params = {})
delete('', params)
end
|
#show(params = {}) ⇒ Object
10
11
12
|
# File 'lib/YouCanBookMe/client/account.rb', line 10
def show(params = {})
get('', params)
end
|
#update(params = {}) ⇒ Object
14
15
16
|
# File 'lib/YouCanBookMe/client/account.rb', line 14
def update(params = {})
patch('', params)
end
|