GetSocial Cordova SDK

LeaderboardScore

declaration
 LeaderboardScore 

Copyright 2015-2016 GetSocial B.V.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

var LeaderboardScore = require('./LeaderboardScore');
var LeaderboardMetaData = require('./LeaderboardMetaData');

//    var leaderboardMetaData = null;
//    var currentScore = null;

var Leaderboard = function(serializedObject) {
    this.leaderboardMetaData = null;
    this.currentScore = null;

    this.deserialize(serializedObject);

}

Leaderboard.prototype.deserialize = function(object) {
    if(typeof object.leaderboardMetaData  === 'string') {
        object.leaderboardMetaData = JSON.parse(object.leaderboardMetaData);
    }
   this.leaderboardMetaData =  new LeaderboardMetaData(object.leaderboardMetaData);
           
    if(typeof object.currentScore  === 'string') {
        object.currentScore = JSON.parse(object.currentScore);
    }
   this.currentScore =  new LeaderboardScore(object.leaderboardScore);
}

Leaderboard.prototype.getLeaderboardMetaData = function() {
    return this.leaderboardMetaData;
}

Leaderboard.prototype.getCurrentScore = function() {
    return this.currentScore;
}

module.exports = Leaderboard;