lib/oneaccess/response/user_response.rb in oneaccess-0.1.3 vs lib/oneaccess/response/user_response.rb in oneaccess-0.1.4
- old
+ new
@@ -1,15 +1,12 @@
# frozen_string_literal: true
+
+require_relative "./base_response"
require_relative "./representer/user_response"
module ONEAccess
module Response
- class UserResponse
- extend Serializable
-
+ class UserResponse < BaseResponse
represented_by Representer::UserResponse
-
- attr_accessor :api_status_code
- attr_accessor :data
end
end
end