module Alula module Video class Device < Alula::Video::BaseResource extend Alula::ApiOperations::Request field :account_id, type: :string field :active, type: :boolean field :brand, type: :string field :hardware_id, type: :string field :manufacturer, type: :string field :name, type: :string field :serial_number, type: :string field :verification_code, type: :string def is_jsw? manufacturer == 'jsw' end def is_hik? manufacturer == 'hikvision' end end end end