Page Summary
-
The ListSubscriptionsResult class is deprecated and has no replacement.
-
This class contains the results of the RecordingApi.listSubscriptions method, including the returned subscriptions.
-
The getSubscriptions() method can be used to retrieve the found subscriptions.
-
The getStatus() method can be used to check if the request was successful.
-
If required permissions are missing, the status code will be NEEDS_OAUTH_PERMISSIONS, and the caller should request user consent.
This class is deprecated.
No replacement.
Result of
RecordingApi.listSubscriptions(GoogleApiClient, DataType). Contains all of the
returned subscriptions which can be retrieved by
getSubscriptions().
The method
getStatus() can be be used to confirm if the request was successful.
In case the calling app is missing the required permissions, the returned status has
status code set to
FitnessStatusCodes.NEEDS_OAUTH_PERMISSIONS. In this case the caller should use
Status.startResolutionForResult(Activity, int) to start an intent to get the
necessary consent from the user before retrying the request.
Inherited Constant Summary
Field Summary
| public static final Creator<ListSubscriptionsResult> | CREATOR |
Public Method Summary
| boolean | |
| Status | |
| List<Subscription> | |
| List<Subscription> |
getSubscriptions()
Returns all of the found subscriptions.
|
| int |
hashCode()
|
| String |
toString()
|
| void |
writeToParcel(Parcel dest, int
flags)
|
Inherited Method Summary
Fields
public static final Creator<ListSubscriptionsResult> CREATOR
Public Methods
public boolean equals (Object o)
public Status getStatus ()
public List<Subscription> getSubscriptions (DataType dataType)
Returns all of the found subscriptions for the given dataType
Returns
- The list of retrieved data sources, empty if none were found.
public List<Subscription> getSubscriptions ()
Returns all of the found subscriptions.
Returns
- The list of retrieved subscriptions, empty if none were found.