Back to project page StravaFlow.
The source code is released under:
MIT License
If you think the Android project StravaFlow listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.mattlogan.stravaflow.api.model; //from w w w .j a v a 2 s . c o m public class AuthResponse { String accessToken; StravaAthlete stravaAthlete; public AuthResponse(String accessToken, StravaAthlete stravaAthlete) { this.accessToken = accessToken; this.stravaAthlete = stravaAthlete; } public String getAccessToken() { return accessToken; } public StravaAthlete getStravaAthlete() { return stravaAthlete; } }