Skip to content

Instantly share code, notes, and snippets.

@orhanobut
Created September 23, 2015 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orhanobut/764f4a366598e17493bb to your computer and use it in GitHub Desktop.
Save orhanobut/764f4a366598e17493bb to your computer and use it in GitHub Desktop.
public class User {
private final String id;
private final String name;
public User(UserResponse response) {
if (response != null) {
id = response.id;
name = response.name;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment