Sha256: 1822ec65ef9f65f271e57d2da17c11c9eb372342ea679904b92529b1adcf2aa9

Contents?: true

Size: 481 Bytes

Versions: 1

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 :AudiobookFormat, "https://schema.org/AudiobookFormat"
        new :GraphicNovel, "https://schema.org/GraphicNovel"
        new :Paperback, "https://schema.org/Paperback"
        new :Hardcover, "https://schema.org/Hardcover"
        new :EBook, "https://schema.org/EBook"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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