This API is available on Firefox OS for internal applications only.
Summary
The MozVoicemailStatus API provides access to a voicemail status.
Interface overview
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.serviceIdRead only
- A number indicating the voicemail service ID.
- MozVoicemailStatus.hasMessageRead only
- A boolean indicating if there are messages available within the voicemail box.
- MozVoicemailStatus.messageCountRead only
- A number indicating the total message count.
- MozVoicemailStatus.returnNumberRead only
- A string representing the return call number for the voicemail status.
- MozVoicemailStatus.returnMessageRead only
- A string representing a displayable return call message for the voicemail status.
Methods
None.
Specification
Not part of any specification yet.