Sha256: 0a19fd02dff08fcab9aff96c43972ca9682e1a6009c86dfa4fb4da4e4da441cc
Contents?: true
Size: 486 Bytes
Versions: 3
Compression:
Stored size: 486 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi. class CarUsageType < TypesafeEnum::Base new :RentalVehicleUsage, "https://schema.org/RentalVehicleUsage" new :DrivingSchoolVehicleUsage, "https://schema.org/DrivingSchoolVehicleUsage" new :TaxiVehicleUsage, "https://schema.org/TaxiVehicleUsage" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems