Sha256: e4e0d06ff7a8710af74317e34e13d4752e83dd51e5e5bf06ce66cb13651504b8
Contents?: true
Size: 756 Bytes
Versions: 6
Compression:
Stored size: 756 Bytes
Contents
# frozen_string_literal: true require_relative "../industry" # declare industry to avoid circular dependency # rubocop:disable Style/ClassAndModuleChildren class ONEAccess::DataObject::Industry; end class ONEAccess::DataObject::Representer::Industry < Representable::Decorator; end # rubocop:enable Style/ClassAndModuleChildren module ONEAccess module DataObject module Representer class Industry < Representable::Decorator include Representable::JSON property :id, as: :Id, type: Integer property :name, as: :Name, type: String property :code, as: :Code, type: String property :parent, as: :Parent, decorator: Representer::Industry, class: DataObject::Industry end end end end
Version data entries
6 entries across 6 versions & 1 rubygems