Sha256: 1eb714ae33043d90278e6405e6427ab998ea6aae80935fd002b311c61e497786
Contents?: true
Size: 459 Bytes
Versions: 10
Compression:
Stored size: 459 Bytes
Contents
# frozen_string_literal: true require_relative 'department' module LedgerSync module QuickBooksOnline class Department < QuickBooksOnline::Resource attribute :Name, type: Type::String attribute :FullyQualifiedName, type: Type::String attribute :Active, type: Type::Boolean attribute :SubDepartment, type: Type::Boolean references_one :Parent, to: Department def name self.Name end end end end
Version data entries
10 entries across 10 versions & 1 rubygems