Sha256: b133c72beaecc263df57fccc4819cd421b791685c72b5f5eff06000dd42cf018

Contents?: true

Size: 481 Bytes

Versions: 3

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openactive-0.2.2 lib/openactive/enums/schema/book_format_type.rb
openactive-0.2.1 lib/openactive/enums/schema/book_format_type.rb
openactive-0.2.0 lib/openactive/enums/schema/book_format_type.rb