# frozen_string_literal: true require_relative './base_response' require_relative './representer/user_response' module ONEAccess module Response class UserResponse < BaseResponse represented_by Representer::UserResponse end end end