From 9f6f1587bbfc9edee16ad2675459dbff1e43f403 Mon Sep 17 00:00:00 2001 From: ATKlegend <30626146+ATKlegend@users.noreply.github.com> Date: Tue, 1 Aug 2017 23:37:08 +0300 Subject: [PATCH] added User entity just add user entity based from the documentation. hope this is the right way to do it. --- lib/prosperworks/User.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lib/prosperworks/User.rb diff --git a/lib/prosperworks/User.rb b/lib/prosperworks/User.rb new file mode 100644 index 0000000..0db06ed --- /dev/null +++ b/lib/prosperworks/User.rb @@ -0,0 +1,12 @@ +module ProsperWorks + class User < BaseEntity + + attr_accessor :id, + :name, + :email, + def self.api_name + "User" + end + + end +end