UNPKG

zumokit

Version:

ZumoKit is a Wallet as a Service SDK

23 lines (22 loc) 680 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AccountFiatProperties = void 0; /** * Account's fiat related properties. * <p> * See {@link Account}. */ var AccountFiatProperties = /** @class */ (function () { /** @internal */ function AccountFiatProperties(json) { this.json = json; this.providerId = json.providerId; this.accountNumber = json.accountNumber; this.sortCode = json.sortCode; this.bic = json.bic; this.iban = json.iban; this.customerName = json.customerName; } return AccountFiatProperties; }()); exports.AccountFiatProperties = AccountFiatProperties;