react-native-lightspeedsdk
Version:
A react-native interface for using the LightspeedSDK
25 lines (20 loc) • 440 B
JavaScript
type OpportunitiesMap = {
dailyQuiz : number,
surveys : number,
geoSurveys : number
};
/**
* Represents an immutable user profile
*/
class Opportunities {
dailyQuiz : number;
surveys : number;
geoSurveys : number;
constructor(map: OpportunitiesMap) {
this.dailyQuiz = map.dailyQuiz;
this.surveys = map.surveys;
this.geoSurveys = map.geoSurveys;
Object.freeze(this);
}
}
module.exports = Opportunities;