class UniaraVirtualParser::Models::Subject

Attributes

average[R]
first_bimester[R]
fourth_bimester[R]
name[R]
recovery[R]
second_bimester[R]
status[R]
substitutive[R]
third_bimester[R]

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/uniara_virtual_parser/models/subject.rb, line 7
def initialize(attributes = {})
  @name             = attributes.fetch :name, nil
  @first_bimester   = attributes.fetch :first_bimester, nil
  @second_bimester  = attributes.fetch :second_bimester, nil
  @third_bimester   = attributes.fetch :third_bimester, nil
  @fourth_bimester  = attributes.fetch :fourth_bimester, nil
  @substitutive     = attributes.fetch :substitutive, nil
  @average          = attributes.fetch :average, nil
  @recovery         = attributes.fetch :recovery, nil
  @status           = attributes.fetch :status, nil
end