# frozen_string_literal: true require_relative "./representer/user_response" module ONEAccess module Response class UserResponse extend Serializable represented_by Representer::UserResponse attr_accessor :api_status_code attr_accessor :data end end end