lib/openactive/models/schema/3dmodel.rb in openactive-0.1.2 vs lib/openactive/models/schema/3dmodel.rb in openactive-0.2.0
- old
+ new
@@ -1,13 +1,19 @@
module OpenActive
module Models
module Schema
- class ThreeDModel < ::OpenActive::Models::Schema::CreativeWork
+ class ThreeDModel < ::OpenActive::Models::Schema::MediaObject
# @!attribute type
# @return [String]
def type
"schema:3DModel"
end
+
+ # @return [Boolean,nil]
+ define_property :is_resizable, as: "isResizable", types: [
+ "bool",
+ "null",
+ ]
end
end
end
end