MozVoicemailStatus
This API is available on Firefox OS for internal applications only.
Summary
The MozVoicemailStatus
API provides access to a voicemail status.
Interface overview
JavaScript
Copy Code
interface MozVoicemailStatus
{
readonly attribute unsigned long serviceId;
readonly attribute boolean hasMessage;
readonly attribute long messageCount;
readonly attribute DOMString returnNumber;
readonly attribute DOMString returnMessage;
};
Properties
MozVoicemailStatus.serviceId
Read only- A number indicating the voicemail service ID.
MozVoicemailStatus.hasMessage
Read only- A boolean indicating if there are messages available within the voicemail box.
MozVoicemailStatus.messageCount
Read only- A number indicating the total message count.
MozVoicemailStatus.returnNumber
Read only- A string representing the return call number for the voicemail status.
MozVoicemailStatus.returnMessage
Read only- A string representing a displayable return call message for the voicemail status.
Methods
None.
Specification
Not part of any specification yet.
See also
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/mozvoicemailsatus