@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
17 lines • 759 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SendFundsRequestData = void 0;
class SendFundsRequestData {
constructor(requestIdentifier, channelAddress, recipientPublicIdentifier, amount, expirationDate, requiredStake, paymentToken, metadata) {
this.requestIdentifier = requestIdentifier;
this.channelAddress = channelAddress;
this.recipientPublicIdentifier = recipientPublicIdentifier;
this.amount = amount;
this.expirationDate = expirationDate;
this.requiredStake = requiredStake;
this.paymentToken = paymentToken;
this.metadata = metadata;
}
}
exports.SendFundsRequestData = SendFundsRequestData;
//# sourceMappingURL=SendFundsRequestData.js.map