Sha256: b071a4c3bedcb4016317dedd2f37d0e3394a361a998d6fd231918104a8e3f1fb
Contents?: true
Size: 1.5 KB
Versions: 4
Compression:
Stored size: 1.5 KB
Contents
module OpenActive module Models module Schema class Article < ::OpenActive::Models::Schema::CreativeWork # @!attribute type # @return [String] def type "schema:Article" end # @return [String,OpenActive::Models::Schema::CreativeWork] define_property :backstory, as: "backstory", types: [ "string", "OpenActive::Models::Schema::CreativeWork", ] # @return [String] define_property :article_body, as: "articleBody", types: [ "string", ] # @return [int,nil] define_property :word_count, as: "wordCount", types: [ "int", "null", ] # @return [int,String,nil] define_property :page_start, as: "pageStart", types: [ "int", "string", "null", ] # @return [String] define_property :article_section, as: "articleSection", types: [ "string", ] # @return [String,int,nil] define_property :page_end, as: "pageEnd", types: [ "string", "int", "null", ] # @return [URI,OpenActive::Models::Schema::SpeakableSpecification] define_property :speakable, as: "speakable", types: [ "URI", "OpenActive::Models::Schema::SpeakableSpecification", ] # @return [String] define_property :pagination, as: "pagination", types: [ "string", ] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems