Extra data about the change, if any. For example, in the case of a rename, this will
contain the new account name. May benullif no extra data is
available.
public intgetChangeType()
The change type of this event. Maps to constants inGoogleAuthUtil.
public intgetEventIndex()
The index of the event. Can be used to determine if the event has been seen or
not.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["`AccountChangeEvent` instances, which are Parcelables, store data about account events. Key information includes the account name (`getAccountName`), change type (`getChangeType`), event index (`getEventIndex`), and any extra data related to the change (`getChangeData`). `AccountChangeEvent` includes methods for equality checks (`equals`), hashing (`hashCode`), string representation (`toString`), and serialization (`writeToParcel`). You can create them by `AccountChangeEvent(long id, String accountName, int changeType, int eventIndex, String changeData)` and they are built using the `CREATOR`.\n"]]