Method: NetSuite::Support::Fields::ClassMethods#read_only_fields
- Defined in:
- lib/netsuite/support/fields.rb
#read_only_fields(*args) ⇒ Object
48 49 50 51 52 53 54 55 56 |
# File 'lib/netsuite/support/fields.rb', line 48 def read_only_fields(*args) if args.empty? @read_only_fields ||= Set.new else args.each do |arg| read_only_field arg end end end |