Sha256: 2a7ff22d0ff883545c3c6de1a8ecd78384bfe24735acbe904b4793a2bc5d63ea

Contents?: true

Size: 635 Bytes

Versions: 2

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 :Installment, "https://schema.org/Installment"
        new :CleaningFee, "https://schema.org/CleaningFee"
        new :Downpayment, "https://schema.org/Downpayment"
        new :Subscription, "https://schema.org/Subscription"
        new :DistanceFee, "https://schema.org/DistanceFee"
        new :ActivationFee, "https://schema.org/ActivationFee"
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
openactive-0.5.0 lib/openactive/enums/schema/price_component_type_enumeration.rb
openactive-0.4.0 lib/openactive/enums/schema/price_component_type_enumeration.rb