Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 11x 11x 2x 11x | import { Verb } from '../Verb';
export interface PhoneNumberAttributes {
transferAnswerUrl?: string;
transferAnswerMethod?: string;
transferAnswerFallbackUrl?: string;
transferAnswerFallbackMethod?: string;
transferDisconnectUrl?: string;
transferDisconnectMethod?: string;
username?: string;
password?: string;
fallbackUsername?: string;
fallbackPassword?: string;
tag?: string;
uui?: string;
}
/**
* @export
* @class PhoneNumber
* @extends {Verb}
* Represents a PhoneNumber verb
*/
export class PhoneNumber extends Verb {
number: string;
attributes: PhoneNumberAttributes;
/**
* Creates an instance of PhoneNumber
* @param {string} number The phone number to transfer to
* @param {PhoneNumberAttributes} attributes The attributes to add to the element
*/
constructor(number: string, attributes?: PhoneNumberAttributes) {
super('PhoneNumber', number, attributes);
}
}
|