SessionStopResult

public class SessionStopResult extends Object
implements Parcelable Result

Result of SessionsApi.stopSession(GoogleApiClient, String).

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<SessionStopResult> CREATOR

Public Method Summary

boolean
List<Session>
getSessions()
Returns the list of sessions that were stopped by the request.
Status
getStatus()
Returns the status of the call to Google Fit.
int
String
void
writeToParcel(Parcel dest, int flags)

Inherited Method Summary

Fields

public static final Creator<SessionStopResult> CREATOR

Public Methods

public boolean equals (Object o)

public List<Session> getSessions ()

Returns the list of sessions that were stopped by the request. Returns an empty list if no active session was stopped.

public Status getStatus ()

Returns the status of the call to Google Fit. Status.isSuccess() can be used to determine whether the call succeeded. In the case of failure, you can inspect the status to determine the reason.

public int hashCode ()

public String toString ()

public void writeToParcel (Parcel dest, int flags)