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

Commit 2391c8f

Browse files
author
Eduardo Fullea
committed
making MessagingFilter a Dictionary
1 parent ca1a45a commit 2391c8f

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

index.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1734,47 +1734,47 @@ <h2><a>ServiceChangeEvent</a> Interface</h2>
17341734
</section>
17351735

17361736

1737-
<!------------------------ Interface MessagingFilter ------------------------->
1737+
<!------------------------ Dictionary MessagingFilter ------------------------>
17381738
<section>
1739-
<h2><a>MessagingFilter</a> Interface</h2>
1740-
<p>The <a>MessagingFilter</a> interface represents a filter that is used to
1739+
<h2><a>MessagingFilter</a> Dictionary</h2>
1740+
<p>The <a>MessagingFilter</a> Dictionary represents a filter that is used to
17411741
select a set of messages (e.g. to be provided upon invoking the
17421742
<code>findMessages</code> or the <code>findConversations</code> method in the
17431743
<code>Messaging</code> interface).
1744-
<dl title="interface MessagingFilter : AbstractFilter"
1744+
<dl title="dictionary MessagingFilter"
17451745
class="idl">
1746-
<dt>attribute MessageType? type</dt>
1746+
<dt>optional MessageType type</dt>
17471747
<dd>Indicates whether just the SMS or MMS messages are to be provided in the
17481748
results of this filter, respectively if it is set to string value 'SMS' or
17491749
'MMS'.
17501750
</dd>
17511751

1752-
<dt>attribute Date? startDate</dt>
1752+
<dt>optional Date startDate</dt>
17531753
<dd>Indicates that messages with timestamp previous to this date will not be
17541754
provided in the results of this filter.</dd>
17551755

1756-
<dt>attribute Date? endDate</dt>
1756+
<dt>optional Date endDate</dt>
17571757
<dd>Indicates that messages with timestamp after this date will not be
17581758
provided in the results of this filter.</dd>
17591759

1760-
<dt>attribute DOMString? from</dt>
1760+
<dt>optional DOMString from</dt>
17611761
<dd>Indicates that just messages sent from this number are to be provided in
17621762
the results of this filter.</dd>
17631763

1764-
<dt>attribute DOMString[]? recipients</dt>
1764+
<dt>optional DOMString[] recipients</dt>
17651765
<dd>Indicates that just messages sent to one of these numbers are to be
17661766
provided in the results of this filter.</dd>
17671767

1768-
<dt>attribute (SmsState or MmsState)? state</dt>
1768+
<dt>optional (SmsState or MmsState) state</dt>
17691769
<dd>Indicates whether the results of this filter just needs to return the
17701770
messages matching the indicated state.
17711771

1772-
<dt>attribute DOMString? serviceID</dt>
1772+
<dt>optional DOMString serviceID</dt>
17731773
<dd>Indicates that just messages associated to the messaging service with
17741774
this identifier are to be provided in the results of this filter.</dd>
17751775

1776-
<dt>attribute boolean? read</dt>
1777-
<dd>Indicates whether just read or unread messages are to be provided in the
1776+
<dt>optional boolean read</dt>
1777+
<dd>optional whether just read or unread messages are to be provided in the
17781778
results of this filter, respectively if it is set to 'true' or 'false'.</dd>
17791779

17801780
</dl>

0 commit comments

Comments
 (0)