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