lib/openactive/models/schema/publication_volume.rb in openactive-0.3.0 vs lib/openactive/models/schema/publication_volume.rb in openactive-0.4.0

- old
+ new

@@ -6,12 +6,17 @@ # @return [String] def type "schema:PublicationVolume" end + # @return [String] + define_property :pagination, as: "pagination", types: [ + "string", + ] + # @return [String,int,nil] - define_property :page_start, as: "pageStart", types: [ + define_property :volume_number, as: "volumeNumber", types: [ "string", "int", "null", ] @@ -20,19 +25,14 @@ "string", "int", "null", ] - # @return [int,String,nil] - define_property :volume_number, as: "volumeNumber", types: [ - "int", + # @return [String,int,nil] + define_property :page_start, as: "pageStart", types: [ "string", + "int", "null", - ] - - # @return [String] - define_property :pagination, as: "pagination", types: [ - "string", ] end end end end