Sha256: 5446bc6ad7c0747b8f4a5efbe03d4ea8fada8d86226803b0d3a66977de061e12
Contents?: true
Size: 428 Bytes
Versions: 3
Compression:
Stored size: 428 Bytes
Contents
# frozen_string_literal: true 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
3 entries across 3 versions & 1 rubygems