# frozen_string_literal: true module LedgerSync module Adaptors module NetSuite module Account class LedgerSerializer < NetSuite::LedgerSerializer api_resource_type :account attribute ledger_attribute: :acctname, resource_attribute: :name attribute ledger_attribute: :accttype, resource_attribute: :account_type attribute ledger_attribute: :acctnumber, resource_attribute: :number end end end end end