UNPKG

react-native-lightspeedsdk

Version:
17 lines (13 loc) 305 B
'use strict'; /** * Represents an immutable user profile */ class QuestionAnswer { questionId:number; answers:Array<string>; constructor(questionIdMap:number, answersMap:Array<string>) { this.questionId = questionIdMap; this.answers = answersMap; } } module.exports = QuestionAnswer;