Sha256: 0065abf758a4e303133f5f03458f701e2a8f973507f33fce5e536bff2b3e07f2
Contents?: true
Size: 1.15 KB
Versions: 23
Compression:
Stored size: 1.15 KB
Contents
module Alula class UserVideoProfile < Alula::RestResource extend Alula::ResourceAttributes extend Alula::RelationshipAttributes extend Alula::ApiOperations::Request extend Alula::ApiOperations::List extend Alula::ApiOperations::Save resource_path 'users/videoprofiles' type 'users-videoprofiles' relationship :user, type: :users, cardinality: 'To-one' # 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: [], patchable_by: [] field :camera_plan_count, type: :number, sortable: true, filterable: false, creatable_by: [:system, :station, :dealer, :technician], patchable_by: [:system, :station, :dealer, :technician] field :clip_plan_count, type: :number, sortable: false, filterable: false, creatable_by: [:system, :station, :dealer, :technician], patchable_by: [:system, :station, :dealer, :technician] end end
Version data entries
23 entries across 23 versions & 1 rubygems