Back to project page hello-pinnedcerts.
The source code is released under:
Copyright (c) 2014 Ivan Ku?t Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwar...
If you think the Android project hello-pinnedcerts 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 co.infinum.https.retrofit; //from w w w . j a v a 2 s.c o m import com.google.gson.annotations.SerializedName; /** * Model that represents User object that can be fetched via Github API. */ public class User { public String login; public int id; public String avatarUrl; public String gravatarId; @SerializedName("html_url") public String htmlUrl; }