Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
zoho_api / lib / zoho_api / invoice / client / contacts.rb
Size: Mime:
# 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