Sha256: ef200d39d6bad1f222a488c418a9f4ce9f06f2a4ba7da6382b8ca686c8d96bae
Contents?: true
Size: 635 Bytes
Versions: 3
Compression:
Stored size: 635 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # Enumerates different price components that together make up the total price for an offered product. class PriceComponentTypeEnumeration < TypesafeEnum::Base new :Downpayment, "https://schema.org/Downpayment" new :CleaningFee, "https://schema.org/CleaningFee" new :DistanceFee, "https://schema.org/DistanceFee" new :ActivationFee, "https://schema.org/ActivationFee" new :Installment, "https://schema.org/Installment" new :Subscription, "https://schema.org/Subscription" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems