Sha256: c302a0fb579b9165f6d211259dde8801508b4594a851871c65f5e92db5c95a82

Contents?: true

Size: 587 Bytes

Versions: 4

Compression:

Stored size: 587 Bytes

Contents

module GoTransverseTractApi

  module GeneralLedger

    class GLAccountCategory

      #
      # @param {Long} eid
      #
      def self.find_by_eid eid
        GoTransverseTractApi.get_response_for(self.class, {eid: eid})
      end

      #
      # @param {String} name
      #
      def self.find_by_name name
        GoTransverseTractApi.get_response_for(self.class, {name: name})
      end

      #
      # @param {String} status
      #
      def self.find_by_status status
        GoTransverseTractApi.get_response_for(self.class, {status: status})
      end

    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gotransverse-tract-api-0.0.12 lib/gotransverse-tract-api/general_ledger/gl_account_category.rb
gotransverse-tract-api-0.0.11 lib/gotransverse-tract-api/general_ledger/gl_account_category.rb
gotransverse-tract-api-0.0.10 lib/gotransverse-tract-api/general_ledger/gl_account_category.rb
gotransverse-tract-api-0.0.9 lib/gotransverse-tract-api/general_ledger/gl_account_category.rb