# frozen_string_literal: true module ONEAccess module DataObject module Representer class OrganizationLight < Representable::Decorator include Representable::JSON property :id, as: :Id, type: Integer property :name, as: :Name, type: String end end end end