Advertisement
Guest User

Untitled

a guest
Mar 16th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. @SerializedName("id")
  2. @Expose
  3. private String id;
  4.  
  5. @SerializedName("username")
  6. @Expose
  7. private String username;
  8.  
  9. @SerializedName("password")
  10. @Expose
  11. private String password;
  12.  
  13. @SerializedName("balance")
  14. @Expose
  15. private String balance;
  16.  
  17. /**
  18. *
  19. * @return
  20. * The id
  21. */
  22. public String getId() {
  23. return id;
  24. }
  25.  
  26. /**
  27. *
  28. * @param id
  29. * The id
  30. */
  31. public void setId(String id) {
  32. this.id = id;
  33. }
  34.  
  35. /**
  36. *
  37. * @return
  38. * The username
  39. */
  40. public String getUsername() {
  41. return username;
  42. }
  43.  
  44. /**
  45. *
  46. * @param username
  47. * The username
  48. */
  49. public void setUsername(String username) {
  50. this.username = username;
  51. }
  52.  
  53. /**
  54. *
  55. * @return
  56. * The password
  57. */
  58. public String getPassword() {
  59. return password;
  60. }
  61.  
  62. /**
  63. *
  64. * @param password
  65. * The password
  66. */
  67. public void setPassword(String password) {
  68. this.password = password;
  69. }
  70.  
  71. /**
  72. *
  73. * @return
  74. * The balance
  75. */
  76. public String getBalance() {
  77. return balance;
  78. }
  79.  
  80. /**
  81. *
  82. * @param balance
  83. * The balance
  84. */
  85. public void setBalance(String balance) {
  86. this.balance = balance;
  87. }
  88.  
  89. public ServicesArray(){};
  90.  
  91. public UserService getUserServiced() {
  92. return userServiced;
  93. }
  94.  
  95. public void setUserServiced(UserService userServiced) {
  96. this.userServiced = userServiced;
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement