Sha256: 5edc5b6b4d18c929fe1fc3550d0d43fd3fac46202e0280fd0b700affbf97c5c2
Contents?: true
Size: 891 Bytes
Versions: 4
Compression:
Stored size: 891 Bytes
Contents
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
Version data entries
4 entries across 4 versions & 1 rubygems