paytm-pg-node-sdk
Version:
Paytm SDK for Node.js
40 lines (39 loc) • 873 B
JavaScript
;
/**
* Copyright (C) 2019 Paytm.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NativeRefundStatusRequestBody = void 0;
/* class: NativeRefundStatusRequestBody */
class NativeRefundStatusRequestBody {
/**
* Paytm\pg\request\NativeRefundStatusRequestBody constructor.
* @param string mid
* @param string orderId
* @param string refId
*/
constructor(mid, orderId, refId) {
this.mid = mid;
this.orderId = orderId;
this.refId = refId;
}
/**
* @return string
*/
getmid() {
return this.mid;
}
/**
* @return string
*/
getOrderId() {
return this.orderId;
}
/**
* @return string
*/
getRefId() {
return this.refId;
}
}
exports.NativeRefundStatusRequestBody = NativeRefundStatusRequestBody;