doku-nodejs-library
Version:
17 lines (15 loc) • 470 B
JavaScript
class AccountUnbindingResponseDto {
constructor(responseCode,responseMessage,referenceNo) {
this.responseCode = responseCode;
this.responseMessage = responseMessage;
this.referenceNo = referenceNo;
}
toObject() {
return {
responseCode: this.responseCode,
responseMessage: this.responseMessage,
referenceNo: this.referenceNo
};
}
}
module.exports = AccountUnbindingResponseDto;