Sha256: c3eda0fd3f9c61044179a97d82f7f60c3e57e25956f3a11c50e5b5f3bf915ccd
Contents?: true
Size: 375 Bytes
Versions: 7
Compression:
Stored size: 375 Bytes
Contents
# frozen_string_literal: true module PlatformSdk module IdMapper module Models # Lti object returned by IdMapper class Lti attr_accessor :id, :title, :identifier, :is_disabled def initialize(attributes = {}) attributes.each do |key, value| send("#{key}=", value) end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems