lib/openactive/models/schema/publication_issue.rb in openactive-0.2.2 vs lib/openactive/models/schema/publication_issue.rb in openactive-0.3.0
- old
+ new
@@ -6,17 +6,19 @@
# @return [String]
def type
"schema:PublicationIssue"
end
- # @return [String]
- define_property :pagination, as: "pagination", types: [
+ # @return [String,int,nil]
+ define_property :page_start, as: "pageStart", types: [
"string",
+ "int",
+ "null",
]
# @return [String,int,nil]
- define_property :page_start, as: "pageStart", types: [
+ define_property :page_end, as: "pageEnd", types: [
"string",
"int",
"null",
]
@@ -25,14 +27,12 @@
"int",
"string",
"null",
]
- # @return [String,int,nil]
- define_property :page_end, as: "pageEnd", types: [
+ # @return [String]
+ define_property :pagination, as: "pagination", types: [
"string",
- "int",
- "null",
]
end
end
end
end