Sha256: 4cf3dbf36f195e2b4c976927c51c6872bbdf900d4fa2f6fb6d0421091794bf7a
Contents?: true
Size: 366 Bytes
Versions: 5
Compression:
Stored size: 366 Bytes
Contents
# frozen_string_literal: true require_relative 'department' module LedgerSync class Department < LedgerSync::Resource attribute :name, type: Type::String attribute :fully_qualified_name, type: Type::String attribute :active, type: Type::Boolean attribute :sub_department, type: Type::Boolean references_one :parent, to: Department end end
Version data entries
5 entries across 5 versions & 1 rubygems