Sha256: fd1859aa87acc8504a20b6e982c1b31a727e637ca2bef3216e081e3c8cb7c376

Contents?: true

Size: 420 Bytes

Versions: 4

Compression:

Stored size: 420 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"
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
openactive-0.1.2 lib/openactive/enums/schema/book_format_type.rb
openactive-0.1.1 lib/openactive/enums/schema/book_format_type.rb
openactive-0.1.0 lib/openactive/enums/schema/book_format_type.rb
openactive-0.1.0.rc1 lib/openactive/enums/schema/book_format_type.rb