Advertisement
Guest User

Untitled

a guest
May 26th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. public class MojangAccountData {
  2.  
  3. private long timestamp;
  4. private String profileId;
  5. private String profileName;
  6. private boolean signatureRequired;
  7.  
  8. private MojangTexture textures;
  9.  
  10. public MojangTexture getTextures() {
  11. return textures;
  12. }
  13.  
  14. @Override
  15. public String toString() {
  16. return "MojangAccountData{" +
  17. "timestamp=" + timestamp +
  18. ", profileId='" + profileId + '\'' +
  19. ", profileName='" + profileName + '\'' +
  20. ", signatureRequired=" + signatureRequired +
  21. ", textures=" + textures +
  22. '}';
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement