lib/openactive/models/schema/publication_volume.rb in openactive-0.2.2 vs lib/openactive/models/schema/publication_volume.rb in openactive-0.3.0
- old
+ new
@@ -6,33 +6,33 @@
# @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: [
"string",
"int",
"null",
]
# @return [String,int,nil]
- define_property :volume_number, as: "volumeNumber", types: [
+ define_property :page_end, as: "pageEnd", types: [
"string",
"int",
"null",
]
- # @return [String,int,nil]
- define_property :page_end, as: "pageEnd", types: [
- "string",
+ # @return [int,String,nil]
+ define_property :volume_number, as: "volumeNumber", types: [
"int",
+ "string",
"null",
+ ]
+
+ # @return [String]
+ define_property :pagination, as: "pagination", types: [
+ "string",
]
end
end
end
end