1 module vksdk.objects.users.UserCounters; 2 3 /** 4 * UserCounters object 5 */ 6 class UserCounters { 7 /** 8 * Albums number 9 */ 10 @name("albums") 11 private int albums; 12 13 /** 14 * Videos number 15 */ 16 @name("videos") 17 private int videos; 18 19 /** 20 * Audios number 21 */ 22 @name("audios") 23 private int audios; 24 25 /** 26 * Notes number 27 */ 28 @name("notes") 29 private int notes; 30 31 /** 32 * Photos number 33 */ 34 @name("photos") 35 private int photos; 36 37 /** 38 * Communities number 39 */ 40 @name("groups") 41 private int groups; 42 43 /** 44 * Gifts number 45 */ 46 @name("gifts") 47 private int gifts; 48 49 /** 50 * Friends number 51 */ 52 @name("friends") 53 private int friends; 54 55 /** 56 * Online friends number 57 */ 58 @name("online_friends") 59 private int onlineFriends; 60 61 /** 62 * Number of photos with user 63 */ 64 @name("user_photos") 65 private int userPhotos; 66 67 /** 68 * Number of videos with user 69 */ 70 @name("user_videos") 71 private int userVideos; 72 73 /** 74 * Followers number 75 */ 76 @name("followers") 77 private int followers; 78 79 /** 80 * Subscriptions number 81 */ 82 @name("subscriptions") 83 private int subscriptions; 84 85 /** 86 * pages number 87 */ 88 @name("pages") 89 private int pages; 90 91 int getAlbums() { 92 return albums; 93 } 94 95 int getVideos() { 96 return videos; 97 } 98 99 int getAudios() { 100 return audios; 101 } 102 103 int getNotes() { 104 return notes; 105 } 106 107 int getPhotos() { 108 return photos; 109 } 110 111 int getGroups() { 112 return groups; 113 } 114 115 int getGifts() { 116 return gifts; 117 } 118 119 int getFriends() { 120 return friends; 121 } 122 123 int getOnlineFriends() { 124 return onlineFriends; 125 } 126 127 int getUserPhotos() { 128 return userPhotos; 129 } 130 131 int getUserVideos() { 132 return userVideos; 133 } 134 135 int getFollowers() { 136 return followers; 137 } 138 139 int getSubscriptions() { 140 return subscriptions; 141 } 142 143 int getPages() { 144 return pages; 145 } 146 }