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