marsol
Version:
Marsol.ly services JS SDK
26 lines (25 loc) • 427 B
text/typescript
/**
*
* @export
* @interface PhoneBookSMSRequestDto
*/
export interface PhoneBookSMSRequestDto {
/**
*
* @type {string}
* @memberof PhoneBookSMSRequestDto
*/
message: string;
/**
*
* @type {string}
* @memberof PhoneBookSMSRequestDto
*/
phonebookId: string;
/**
*
* @type {string}
* @memberof PhoneBookSMSRequestDto
*/
senderId?: string;
}