@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
13 lines • 840 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PushPayment = void 0;
const Payment_1 = require("./Payment");
class PushPayment extends Payment_1.Payment {
constructor(id, routerPublicIdentifier, chainId, to, from, state, paymentToken, requiredStake, amountStaked, expirationDate, createdTimestamp, updatedTimestamp, collateralRecovered, gatewayUrl, details, metadata, paymentAmount, amountTransferred) {
super(id, routerPublicIdentifier, chainId, to, from, state, paymentToken, requiredStake, amountStaked, expirationDate, createdTimestamp, updatedTimestamp, collateralRecovered, gatewayUrl, details, metadata);
this.paymentAmount = paymentAmount;
this.amountTransferred = amountTransferred;
}
}
exports.PushPayment = PushPayment;
//# sourceMappingURL=PushPayment.js.map