class Caliper::Entities::DigitalResource

Attributes

alignedLearningObjective[RW]
datePublished[RW]
isPartOf[RW]
keywords[RW]
objectType[RW]
version[RW]

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/caliper/entities/digital_resource.rb, line 35
def initialize
  super
  @type = Caliper::Entities::EntityType::DIGITAL_RESOURCE
  @alignedLearningObjective = Array.new
  @objectType = Array.new
  @keywords = Array.new
  @datePublished = nil
  @isPartOf = nil
  @version = nil
end