Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit c4349f5

Browse files
author
Eduardo Fullea
committed
messageClass enum
1 parent 537d385 commit c4349f5

File tree

1 file changed

+31
-5
lines changed

1 file changed

+31
-5
lines changed

index.html

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1447,11 +1447,9 @@ <h2><a>SmsMessage</a> Interface</h2>
14471447
<dd>MUST return the delivery status of the SMS message.
14481448
</dd>
14491449

1450-
<dt>readonly attribute DOMString messageClass</dt>
1451-
<dd>MUST return the SMS message class, with possible values: 'class-0',
1452-
'class-1', 'class-2', 'class-3' or 'normal' (same as 'class-1'), according
1453-
to the value indicated in the TP-Data-Coding-Scheme (TP-DCS) field of the
1454-
SMS.</dd>
1450+
<dt>readonly attribute MessageClass messageClass</dt>
1451+
<dd>MUST return the SMS message class, according to the value indicated in
1452+
the TP-Data-Coding-Scheme (TP-DCS) field of the SMS.</dd>
14551453

14561454
</dl>
14571455
</section>
@@ -1887,6 +1885,34 @@ <h2>Enumerations</h2>
18871885
</dd>
18881886
</dl>
18891887

1888+
<p>The attibute <code>messageClass</code> in an <code>SmsMessage</code> can have
1889+
the following values:
1890+
<dl class="idl" title="enum MessageClass">
1891+
<dt>class-0</dt>
1892+
<dd>
1893+
The message is of class 0.
1894+
</dd>
1895+
1896+
<dt>class-1</dt>
1897+
<dd>
1898+
The message is of class 1.
1899+
</dd>
1900+
1901+
<dt>class-2</dt>
1902+
<dd>
1903+
The message is of class 2.
1904+
</dd>
1905+
1906+
<dt>class-3</dt>
1907+
<dd>
1908+
The message is of class 3.
1909+
</dd>
1910+
1911+
<dt>normal</dt>
1912+
<dd>
1913+
The message is of class 1 (same as 'class-1').
1914+
</dd>
1915+
</dl>
18901916
<p>The attibute <code>state</code> in an <code>SmsMessage</code> can have
18911917
the following values:
18921918
<dl class="idl" title="enum SmsState">

0 commit comments

Comments
 (0)