1 module vksdk.objects.users.UserMin;
2 
3 import vibe.data.json;
4 
5 /**
6  * UserMin object
7  */
8 class UserMin {
9     /**
10      * User ID
11      */
12     @name("id")
13     private int id;
14 
15     /**
16      * User first name
17      */
18     @name("first_name")
19     private string firstName;
20 
21     /**
22      * User last name
23      */
24     @name("last_name")
25     private string lastName;
26 
27     /**
28      * Returns if a profile is deleted or blocked
29      */
30     @name("deactivated")
31     private string deactivated;
32 
33     /**
34      * Returns if a profile is hidden.
35      */
36     @name("hidden")
37     private int hidden;
38 
39     int getId() {
40         return id;
41     }
42 
43     string getFirstName() {
44         return firstName;
45     }
46 
47     string getLastName() {
48         return lastName;
49     }
50 
51     string getDeactivated() {
52         return deactivated;
53     }
54 
55     int getHidden() {
56         return hidden;
57     }
58 }