marsol
Version:
Marsol.ly services JS SDK
26 lines (25 loc) • 419 B
TypeScript
/**
*
* @export
* @interface RecipientPhoneNumber
*/
export interface RecipientPhoneNumber {
/**
*
* @type {string}
* @memberof RecipientPhoneNumber
*/
phoneNumber: string;
/**
*
* @type {string}
* @memberof RecipientPhoneNumber
*/
status: string;
/**
*
* @type {string}
* @memberof RecipientPhoneNumber
*/
senderDevice: string;
}