Line | Branch | Exec | Source |
---|---|---|---|
1 | /* Copyright 2024 Jan-Michael Brummer <jan-michael.brummer1@volkswagen.de> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU Lesser General Public License as published by | ||
5 | * the Free Software Foundation, either version 3 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU Lesser General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU Lesser General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #if !defined(_MSG_INSIDE) && !defined(MSG_COMPILATION) | ||
20 | #error "Only <msg.h> can be included directly." | ||
21 | #endif | ||
22 | |||
23 | #include <glib-object.h> | ||
24 | #include <gio/gio.h> | ||
25 | #include <json-glib/json-glib.h> | ||
26 | |||
27 | G_BEGIN_DECLS | ||
28 | |||
29 | #define MSG_TYPE_USER (msg_user_get_type ()) | ||
30 | |||
31 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2 times.
|
15 | G_DECLARE_FINAL_TYPE (MsgUser, msg_user, MSG, USER, GObject); |
32 | |||
33 | MsgUser * | ||
34 | msg_user_new (void); | ||
35 | |||
36 | MsgUser * | ||
37 | msg_user_new_from_json (JsonObject *json_object, | ||
38 | GError **error); | ||
39 | |||
40 | const char * | ||
41 | msg_user_get_mail (MsgUser *self); | ||
42 | |||
43 | const char * | ||
44 | msg_user_get_display_name (MsgUser *self); | ||
45 | |||
46 | const char * | ||
47 | msg_user_get_given_name (MsgUser *self); | ||
48 | |||
49 | const char * | ||
50 | msg_user_get_mail_name (MsgUser *self); | ||
51 | |||
52 | const char * | ||
53 | msg_user_get_mobile_phone (MsgUser *self); | ||
54 | |||
55 | const char * | ||
56 | msg_user_get_office_location (MsgUser *self); | ||
57 | |||
58 | const char * | ||
59 | msg_user_get_surname (MsgUser *self); | ||
60 | |||
61 | const char * | ||
62 | msg_user_get_company_name (MsgUser *self); | ||
63 | |||
64 | const char * | ||
65 | msg_user_get_department (MsgUser *self); | ||
66 | |||
67 | G_END_DECLS | ||
68 |