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