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 SipUriAttributes {
uui?: string;
transferAnswerUrl?: string;
transferAnswerMethod?: string;
transferAnswerFallbackUrl?: string;
transferAnswerFallbackMethod?: string;
transferDisconnectUrl?: string;
transferDisconnectMethod?: string;
username?: string;
password?: string;
fallbackUsername?: string;
fallbackPassword?: string;
tag?: string;
}
/**
* @export
* @class SipUri
* @extends {Verb}
* Represents a SipUri verb
*/
export class SipUri extends Verb {
uri: string;
attributes: SipUriAttributes;
/**
* Creates an instance of SipUri
* @param {string} uri The sip uri to transfer to
* @param {SipUriAttributes} attributes The attributes to add to the element
*/
constructor(uri: string, attributes?: SipUriAttributes) {
super('SipUri', uri, attributes);
}
}
|