Sha256: 74a00b83f072a9b5241ea3b782aa4660b93d22c4194bfb720e5801d6c8616214

Contents?: true

Size: 635 Bytes

Versions: 1

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openactive-0.3.0 lib/openactive/enums/schema/price_component_type_enumeration.rb