Sha256: bf6b1220062f0e966130f8fa511281d150d79f0e2f245c65e4cb7e13cdbed23d
Contents?: true
Size: 887 Bytes
Versions: 4
Compression:
Stored size: 887 Bytes
Contents
module OpenActive module Models module Schema class PublicationIssue < ::OpenActive::Models::Schema::CreativeWork # @!attribute type # @return [String] def type "schema:PublicationIssue" end # @return [int,String,nil] define_property :page_start, as: "pageStart", types: [ "int", "string", "null", ] # @return [String,int,nil] define_property :page_end, as: "pageEnd", types: [ "string", "int", "null", ] # @return [int,String,nil] define_property :issue_number, as: "issueNumber", types: [ "int", "string", "null", ] # @return [String] define_property :pagination, as: "pagination", types: [ "string", ] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems