Sha256: 95206e4dcea99858b0e0ece7a93ff4338a96e367818eb057cbb96a665ada3957

Contents?: true

Size: 274 Bytes

Versions: 2

Compression:

Stored size: 274 Bytes

Contents

# frozen_string_literal: true

module LedgerSync
  class BillLineItem < LedgerSync::Resource
    references_one :account, to: Account
    attribute :amount, type: Type::Integer
    attribute :description, type: Type::String

    def name
      description
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ledger_sync-1.1.3 lib/ledger_sync/resources/bill_line_item.rb
ledger_sync-1.1.2 lib/ledger_sync/resources/bill_line_item.rb