blob: 107bbd7773a6d7e028d94028e2a4b6af24d68a3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?xml version="1.0" encoding="UTF-8" ?>
<!--
ModemManager 1.0 Interface Specification
Copyright (C) 2024 Guido Günther <agx@sigxcpu.org>
-->
<node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
<!--
org.freedesktop.ModemManager1.Cbm:
@short_description: The ModemManager Cbm interface.
The Cbm interface defines operations and properties of a single cell broadcast message.
-->
<interface name="org.freedesktop.ModemManager1.Cbm">
<!--
State:
A <link linkend="MMCbmState">MMCbmState</link> value,
describing the state of the message.
Since: 1.24
-->
<property name="State" type="u" access="read" />
<!--
Text:
Message text, in UTF-8.
Since: 1.24
-->
<property name="Text" type="s" access="read" />
<!--
Channel:
The channel (or message identifier) specifying the source and
type of the cell broadcast message.
Since: 1.24
-->
<property name="Channel" type="u" access="read" />
<!--
MessageCode:
The message code of this CBM. The message code differentiates
between CBMs from the same channel.
Since: 1.24
-->
<property name="MessageCode" type="u" access="read" />
<!--
Update:
The update number of this CBM. The update number allows to update CBMs
with the same channel and message code.
Since: 1.24
-->
<property name="Update" type="u" access="read" />
</interface>
</node>
|