Sha256: 801ca8116799f8d05af991548717b39b13cc431477be84e0a203b9c187f89685

Contents?: true

Size: 525 Bytes

Versions: 2

Compression:

Stored size: 525 Bytes

Contents

# frozen_string_literal: true

#
# Parser for OpenAPI 3.0 data for a given record method
#
module LedgerSync
  module Adaptors
    module NetSuite
      module Record
        class Property < Util::ReadOnlyObject
          attribute :enum, default: nil
          attribute :format, default: nil
          attribute :key
          attribute :nullable, default: false
          attribute :read_only, default: false, source: :readOnly
          attribute :title
          attribute :type
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ledger_sync-1.3.5 lib/ledger_sync/adaptors/netsuite/record/property.rb
ledger_sync-1.3.4 lib/ledger_sync/adaptors/netsuite/record/property.rb