You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
538 B
31 lines
538 B
10 years ago
|
'use strict';
|
||
|
|
||
|
function Preferences() {
|
||
|
this.version = '1.0.0';
|
||
|
};
|
||
|
|
||
|
Preferences.create = function(opts) {
|
||
|
opts = opts || {};
|
||
|
|
||
|
var x = new Preferences();
|
||
|
|
||
|
x.createdOn = Math.floor(Date.now() / 1000);
|
||
|
x.walletId = opts.walletId;
|
||
|
x.copayerId = opts.copayerId;
|
||
|
x.email = opts.email;
|
||
|
return x;
|
||
|
};
|
||
|
|
||
|
Preferences.fromObj = function(obj) {
|
||
|
var x = new Preferences();
|
||
|
|
||
|
x.createdOn = obj.createdOn;
|
||
|
x.walletId = obj.walletId;
|
||
|
x.copayerId = obj.copayerId;
|
||
|
x.email = obj.email;
|
||
|
return x;
|
||
|
};
|
||
|
|
||
|
|
||
|
module.exports = Preferences;
|