Sha256: d96d7698d348f4b39bac300a8c47bca0fa6b2301ffd33fc828b5e9e068580003

Contents?: true

Size: 417 Bytes

Versions: 2

Compression:

Stored size: 417 Bytes

Contents

require 'typesafe_enum'

module OpenActive
  module Enums
    module Schema
      # Enumerates several kinds of product return refund types.
      class RefundTypeEnumeration < TypesafeEnum::Base
        new :FullRefund, "https://schema.org/FullRefund"
        new :StoreCreditRefund, "https://schema.org/StoreCreditRefund"
        new :ExchangeRefund, "https://schema.org/ExchangeRefund"
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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