lib/openactive/models/schema/chapter.rb in openactive-0.3.0 vs lib/openactive/models/schema/chapter.rb in openactive-0.4.0
- old
+ new
@@ -6,26 +6,26 @@
# @return [String]
def type
"schema:Chapter"
end
- # @return [String,int,nil]
- define_property :page_start, as: "pageStart", types: [
+ # @return [String]
+ define_property :pagination, as: "pagination", types: [
"string",
- "int",
- "null",
]
# @return [String,int,nil]
define_property :page_end, as: "pageEnd", types: [
"string",
"int",
"null",
]
- # @return [String]
- define_property :pagination, as: "pagination", types: [
+ # @return [String,int,nil]
+ define_property :page_start, as: "pageStart", types: [
"string",
+ "int",
+ "null",
]
end
end
end
end