UNPKG

tnzapi

Version:

Node.js Library for TNZ Group REST API

16 lines (12 loc) 383 B
const functions = require("../../../Functions"); const CommonListApiResponseDTO = require("../../../Common/dtos/CommonListApiResponseDTO"); class SMSReceivedApiResponseDTO extends CommonListApiResponseDTO { Messages = []; constructor(data) { super(); functions.Map(this,data); } } module.exports = SMSReceivedApiResponseDTO;