Sha256: 4b4ab388488cd2396ff4b028af484b986b09948279697b35461863a041aa09c0
Contents?: true
Size: 481 Bytes
Versions: 2
Compression:
Stored size: 481 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # The publication format of the book. class BookFormatType < TypesafeEnum::Base new :GraphicNovel, "https://schema.org/GraphicNovel" new :AudiobookFormat, "https://schema.org/AudiobookFormat" new :EBook, "https://schema.org/EBook" new :Paperback, "https://schema.org/Paperback" new :Hardcover, "https://schema.org/Hardcover" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/enums/schema/book_format_type.rb |
openactive-0.4.0 | lib/openactive/enums/schema/book_format_type.rb |