module OpenActive module Models module Schema class Article < ::OpenActive::Models::Schema::CreativeWork # @!attribute type # @return [String] def type "schema:Article" end # @return [int,nil] define_property :word_count, as: "wordCount", types: [ "int", "null", ] # @return [String] define_property :pagination, as: "pagination", types: [ "string", ] # @return [String] define_property :article_section, as: "articleSection", types: [ "string", ] # @return [String] define_property :article_body, as: "articleBody", types: [ "string", ] # @return [String,OpenActive::Models::Schema::CreativeWork,URI] define_property :backstory, as: "backstory", types: [ "string", "OpenActive::Models::Schema::CreativeWork", "URI", ] # @return [String,int,nil] define_property :page_end, as: "pageEnd", types: [ "string", "int", "null", ] # @return [String,int,nil] define_property :page_start, as: "pageStart", types: [ "string", "int", "null", ] # @return [OpenActive::Models::Schema::SpeakableSpecification,URI] define_property :speakable, as: "speakable", types: [ "OpenActive::Models::Schema::SpeakableSpecification", "URI", ] end end end end