lib/openactive/models/schema/publication_volume.rb in openactive-0.1.2 vs lib/openactive/models/schema/publication_volume.rb in openactive-0.2.0
- old
+ new
@@ -6,14 +6,19 @@
# @return [String]
def type
"schema:PublicationVolume"
end
- # @return [int,String,nil]
+ # @return [String]
+ define_property :pagination, as: "pagination", types: [
+ "string",
+ ]
+
+ # @return [String,int,nil]
define_property :page_start, as: "pageStart", types: [
- "int",
"string",
+ "int",
"null",
]
# @return [String,int,nil]
define_property :volume_number, as: "volumeNumber", types: [
@@ -25,14 +30,9 @@
# @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