GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeFollowEntityClickedParams

Parameters provided when a follow entity is clicked in the Player's UI.


Parameters

  • playerType - The type of player where the follow entity was clicked.
  • sourceId - The unique identifier of the player's source.
  • newFollowingState - The updated follow state after the click (true if now following, false if not).
  • followEntity - The [BlazeFollowEntity] that was clicked.

data class BlazeFollowEntityClickedParams internal constructor(
    val playerType: BlazePlayerType,
    val sourceId: String,
    val newFollowingState: Boolean,
    val followEntity: BlazeFollowEntity
)

Did this page help you?