# frozen_string_literal: true module Qismo # # Agent model # # @!attribute id [Integer] # @!attribute email [String] # @!attribute name [String] # @!attribute authentication_token [String] # @!attribute created_at [String] # @!attribute updated_at [String] # @!attribute sdk_email [String] # @!attribute sdk_key [String] # @!attribute is_available [TrueClass, FalseClass] # @!attribute type [Integer] # @!attribute avatar_url [String] # @!attribute app_id [Integer] # @!attribute is_verified [TrueClass, FalseClass] # @!attribute notifications_room_id [String] # @!attribute bubble_color [String, nil] # @!attribute qismo_key [String] # @!attribute direct_login_token [String] # @!attribute last_login [String] # @!attribute force_offline [TrueClass, FalseClass] # @!attribute deleted_at [String, nil] # @!attribute type_as_string [String] # @!attribute assigned_rules [Array] # class Agent < Base # @!parse # extend Resources::AgentResource extend Resources::AgentResource end module Operations # @return [Qismo::Agent::Class] def agent Qismo::Agent end end end