Sha256: 6f961b575bd9e4ad1652432d68ffacfbb6181e1c65efd77e64c78f1af8779366
Contents?: true
Size: 1.43 KB
Versions: 89
Compression:
Stored size: 1.43 KB
Contents
module Alula class FeaturePlan < Alula::RestResource extend Alula::ResourceAttributes extend Alula::ApiOperations::Request extend Alula::ApiOperations::List extend Alula::ApiOperations::Save extend Alula::ApiOperations::Delete resource_path 'features/plans' type 'feature-plan' # Resource Fields # Not all params are used at the moment. See Alula::ResourceAttributes for details # on how params are parsed, field :id, type: :string, sortable: false, filterable: false, creatable_by: [:system], patchable_by: [] field :gp_id, type: :string, sortable: true, filterable: true, creatable_by: [:system], patchable_by: [] field :name, type: :string, sortable: true, filterable: true, creatable_by: [:system], patchable_by: [:system] field :description, type: :object, sortable: false, filterable: false, creatable_by: [:system], patchable_by: [:system] field :date_created, type: :date, sortable: true, filterable: true, creatable_by: [:system], patchable_by: [] field :date_modified, type: :date, sortable: true, filterable: true, creatable_by: [:system], patchable_by: [:system] end end
Version data entries
89 entries across 89 versions & 1 rubygems