# frozen_string_literal: true module Qismo # # User model # # @!attribute id [Integer] # @!attribute name [String] # @!attribute authentication_token [String] # @!attribute is_available [TrueClass, FalseClass] # @!attribute direct_login_token [String] # @!attribute long_lived_token [String] # class User < Base # @!parse # extend Resources::UserResource extend Resources::UserResource end end