Koha::AuthorisedValue - Koha Authorised value Object class
AuthorisedValue specific store to ensure relevant caches are flushed on change
AuthorisedValue specific delete
to clear relevant caches on delete.
my $description = $av->opac_description();
This method returns the mapping for representing a Koha::AuthorisedValue object on the API.
This helper method tells you if the category for this value allows numbers only.
my $json = $av->to_api;
Overloaded method that returns a JSON representation of the Koha::AuthorisedValue object, suitable for API output.
Raise an exception if the category only allows integer values and the value is not. Otherwise returns true.
Kyle M Hall <kyle@bywatersolutions.com>