Sha256: a191caa70296d15ce42483ca0caced8811bcc4ad4b3635583dde53dfa3449a31
Contents?: true
Size: 417 Bytes
Versions: 1
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 :StoreCreditRefund, "https://schema.org/StoreCreditRefund" new :ExchangeRefund, "https://schema.org/ExchangeRefund" new :FullRefund, "https://schema.org/FullRefund" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/enums/schema/refund_type_enumeration.rb |