Interface HelpCenterBlipsProvider



  • public interface HelpCenterBlipsProvider
    A Provider for tracking user actions and page views.

    This is used internally by the Guide SDK and should not be called directly by an integrator.

    • Method Detail

      • helpCenterSearch

        void helpCenterSearch(java.lang.String query)
        Tracks a Help Center search as a UserAction blip.
        Parameters:
        query - the search query to be tracked in the Blip
      • articleView

        void articleView(Article article)
        Tracks a view of a Help Center article as a PageView blip.
        Parameters:
        article - the viewed article.
      • articleVote

        void articleVote(java.lang.Long articleId,
                         int vote)
        Tracks a vote on a Help Center article as a UserAction blip.
        Parameters:
        articleId - the ID of the article on which the vote has been cast
        vote - an integer representation of the vote's direction. +1 for an upvote, -1 for a downvote, 0 for a deleted vote.