coyosoftware/nova-api

View on GitHub
lib/nova/api/search_params/current_asset.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Nova
  module API
    module SearchParams
      class CurrentAsset < Nova::API::Utils::BaseStruct
        attribute? :company_id, Dry::Types['coercible.integer'].optional
        attribute? :with_inactive, Dry::Types['strict.bool'].optional
      end
    end
  end
end