AI-generated Key Takeaways
-
The content lists various interfaces and classes related to obtaining snapshot data from the Awareness API.
-
Interfaces like
BeaconStateResultandLocationResultare results fromGoogleApiClientmethods. -
Classes such as
BeaconStateResponseandLocationResponseare results fromSnapshotClientmethods. -
Both interfaces and classes provide ways to access information about the user's current context, like location or detected activity.
Interfaces
| BeaconStateResult | Result from
getBeaconState(GoogleApiClient, Collection). |
| DetectedActivityResult | Result from
getDetectedActivity(GoogleApiClient). |
| HeadphoneStateResult | Result from
getHeadphoneState(GoogleApiClient). |
| LocationResult | Result from
getLocation(GoogleApiClient). |
| TimeIntervalsResult | Result from
getTimeIntervals(GoogleApiClient). |
Classes
| BeaconStateResponse | Result from
getBeaconState(Collection). |
| DetectedActivityResponse | Result from
getDetectedActivity(). |
| HeadphoneStateResponse | Result from
getHeadphoneState(). |
| LocationResponse | Result from
getLocation(). |
| TimeIntervalsResponse | Result from
getTimeIntervals(). |