sila-sdk
Version:
SDK Access to the Sila API
36 lines (29 loc) • 519 B
JavaScript
class WalletFilters {
constructor() {
/**
* @type {Number}
*/
this.page = undefined;
/**
* @type {Number}
*/
this.per_page = undefined;
/**
* @type {Boolean}
*/
this.sort_ascending = undefined;
/**
* @type {String}
*/
this.blockchain_network = undefined;
/**
* @type {String}
*/
this.blockchain_address = undefined;
/**
* @type {String}
*/
this.nickname = undefined;
}
}
export default WalletFilters;