172
edits
(→WebIDL) |
|||
Line 39: | Line 39: | ||
interface LogEntryProperties { | interface LogEntryProperties { | ||
// possible values: ['incoming', 'outgoing''] | |||
attribute DOMString | attribute DOMString type; | ||
attribute DOMString | // [missed, new] | ||
attribute DOMString[] | attribute DOMString status; | ||
attribute DOMString | // ContactId | ||
attribute DOMString | attribute DOMString[] contactId; | ||
// Tel number if not in contacts | |||
attribute DOMString[] tel; | |||
// Object id (for example SMS message on the SMS database) | |||
attribute DOMString objectId; | |||
// oneOf ['SMS', 'Telephony', 'Facebook', 'Twitter'] | |||
attribute DOMString service; | |||
attribute DOMString title; | attribute DOMString title; | ||
attribute DOMString description; | attribute DOMString description; | ||
// Any extra data to be used by applications | |||
attribute any extra; | |||
}; | }; | ||
edits