module OpenActive module Models module Schema class PublicationVolume < ::OpenActive::Models::Schema::CreativeWork # @!attribute type # @return [String] def type "schema:PublicationVolume" end # @return [int,String,nil] define_property :page_start, as: "pageStart", types: [ "int", "string", "null", ] # @return [String,int,nil] define_property :volume_number, as: "volumeNumber", types: [ "string", "int", "null", ] # @return [String,int,nil] define_property :page_end, as: "pageEnd", types: [ "string", "int", "null", ] # @return [String] define_property :pagination, as: "pagination", types: [ "string", ] end end end end