Class: Renshuu::UserData
- Defined in:
- lib/renshuu/models/user_data.rb
Overview
Model class for user data.
Defined Under Namespace
Classes: StudyVector
Instance Attribute Summary collapse
- #correct_count ⇒ Integer readonly
- #mastery_avg_perc ⇒ Integer readonly
- #missed_count ⇒ Integer readonly
- #study_vectors ⇒ Hash{String => StudyVector} readonly
Instance Attribute Details
#correct_count ⇒ Integer (readonly)
10 |
# File 'lib/renshuu/models/user_data.rb', line 10 attribute :correct_count, Types::Integer |
#mastery_avg_perc ⇒ Integer (readonly)
18 |
# File 'lib/renshuu/models/user_data.rb', line 18 attribute :mastery_avg_perc, Types::Integer.fallback(0) |
#missed_count ⇒ Integer (readonly)
14 |
# File 'lib/renshuu/models/user_data.rb', line 14 attribute :missed_count, Types::Integer |
#study_vectors ⇒ Hash{String => StudyVector} (readonly)
51 |
# File 'lib/renshuu/models/user_data.rb', line 51 attribute? :study_vectors, Types::Hash.map(Types::String, StudyVector) |