Package zendesk.support
Interface HelpCenterBlipsProvider
- 
public interface HelpCenterBlipsProviderA 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.
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static interfaceHelpCenterBlipsProvider.ArticleVote 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description voidarticleView(Article article)Tracks a view of a Help Center article as a PageView blip.voidarticleVote(java.lang.Long articleId, int vote)Tracks a vote on a Help Center article as a UserAction blip.voidhelpCenterSearch(java.lang.String query)Tracks a Help Center search as a UserAction blip. 
 - 
 
- 
- 
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 castvote- an integer representation of the vote's direction. +1 for an upvote, -1 for a downvote, 0 for a deleted vote.
 
 - 
 
 -