class Clever::Types::Course
Attributes
district[R]
name[R]
number[R]
provider[R]
uid[R]
Public Class Methods
new(attributes = {}, *)
click to toggle source
# File lib/clever/types/course.rb, line 12 def initialize(attributes = {}, *) @uid = attributes['id'] @district = attributes['district'] @name = attributes['name'] @number = attributes['number'] @provider = 'clever' end