From Bright Pattern Documentation
Jump to: navigation, search
This page contains changes which are not marked for translation.
• 5.19


getPhoneDevice

Returns the selected phone device and its phone number (i.e., if it's configurable for this phone device).

Request

Syntax

getPhoneDevice(): Promise<OperationResult<PhoneDeviceData>>

Where:

type PhoneDeviceData = {

    type: PhoneDevice

    phone?: string

}

Parameters

(None)

Example Request

getPhoneDeviceButton.onclick = () => {

    adApi.getPhoneDevice()

}

Return Value

This method returns the list of available PhoneDevice types (i.e., as defined in the method getPhoneDevicesList) and its corresponding phone number.

< Previous | Next >