UNPKG

marsol

Version:
26 lines (25 loc) 427 B
/** * * @export * @interface PhoneBookSMSRequestDto */ export interface PhoneBookSMSRequestDto { /** * * @type {string} * @memberof PhoneBookSMSRequestDto */ message: string; /** * * @type {string} * @memberof PhoneBookSMSRequestDto */ phonebookId: string; /** * * @type {string} * @memberof PhoneBookSMSRequestDto */ senderId?: string; }