172
edits
(→WebIDL) |
(→WebIDL) |
||
Line 52: | Line 52: | ||
dictionary LogFindFilter { | dictionary LogFindFilter { | ||
DOMString? contactId; | DOMString? contactId; | ||
Date? from; | Date? from; // for defining a time interval | ||
Date? to; | Date? to; // for defining a time interval | ||
DOMString? service; | DOMString? service; // to filter by service | ||
DOMString? type; | DOMString? type; // to filter by Log type | ||
}; | }; | ||
Line 61: | Line 61: | ||
Date deadline; // To clear all the entries older than the date passed as parameter | Date deadline; // To clear all the entries older than the date passed as parameter | ||
DOMString? contactId; // To clear all the entries corresponding to a contact | DOMString? contactId; // To clear all the entries corresponding to a contact | ||
DOMString? tel; | DOMString? tel; // To clear all the entries corresponding to a tel number | ||
}; | }; | ||
edits