# frozen_string_literal: true require_relative "./representer/organization_light" module ONEAccess module DataObject class OrganizationLight extend Serializable represented_by Representer::OrganizationLight attr_accessor :id attr_accessor :name end end end