michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this file, michael@0: * You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: [scriptable, builtinclass, uuid(17890b60-0367-45c6-9729-62e5bf349b2b)] michael@0: interface nsIDOMMozSmsFilter : nsISupports michael@0: { michael@0: // A date that can return null. michael@0: [implicit_jscontext] michael@0: attribute jsval startDate; michael@0: michael@0: // A date that can return null. michael@0: [implicit_jscontext] michael@0: attribute jsval endDate; michael@0: michael@0: // An array of DOMString that can return null. michael@0: [implicit_jscontext] michael@0: attribute jsval numbers; michael@0: michael@0: // A DOMString that can return and be set to "sent", "received" or null. michael@0: [Null(Empty)] michael@0: attribute DOMString delivery; michael@0: michael@0: // A read flag that can return and be set to a boolean or null. michael@0: [implicit_jscontext] michael@0: attribute jsval read; michael@0: michael@0: // A thread id that can return and be set to a numeric value or null. michael@0: [implicit_jscontext] michael@0: attribute jsval threadId; michael@0: };