Repository URL to install this package:
|
Version:
0.2.1 ▾
|
# frozen_string_literal: true
module ZohoApi
module Invoice
class Client
# Api wrapper for invoicing contacts apis
module Contacts
def contacts(params = {})
get('contacts', params)
end
def contact(uuid, params = {})
get("contacts/#{uuid}", params)['data']
end
end
end
end
end