lib/openactive/models/schema/medical_procedure.rb in openactive-0.3.0 vs lib/openactive/models/schema/medical_procedure.rb in openactive-0.4.0
- old
+ new
@@ -6,44 +6,44 @@
# @return [String]
def type
"schema:MedicalProcedure"
end
- # @return [OpenActive::Models::Schema::MedicalProcedureType,URI]
- define_property :procedure_type, as: "procedureType", types: [
- "OpenActive::Models::Schema::MedicalProcedureType",
- "URI",
- ]
-
- # @return [OpenActive::Models::Schema::MedicalEntity,String,URI]
- define_property :preparation, as: "preparation", types: [
- "OpenActive::Models::Schema::MedicalEntity",
+ # @return [String]
+ define_property :body_location, as: "bodyLocation", types: [
"string",
- "URI",
]
# @return [String]
- define_property :body_location, as: "bodyLocation", types: [
+ define_property :how_performed, as: "howPerformed", types: [
"string",
]
- # @return [String,OpenActive::Enums::Schema::EventStatusType,OpenActive::Models::Schema::MedicalStudyStatus,URI,nil]
+ # @return [OpenActive::Models::Schema::MedicalProcedureType,URI]
+ define_property :procedure_type, as: "procedureType", types: [
+ "OpenActive::Models::Schema::MedicalProcedureType",
+ "URI",
+ ]
+
+ # @return [OpenActive::Enums::Schema::EventStatusType,OpenActive::Models::Schema::MedicalStudyStatus,String,URI,nil]
define_property :status, as: "status", types: [
- "string",
"OpenActive::Enums::Schema::EventStatusType",
"OpenActive::Models::Schema::MedicalStudyStatus",
+ "string",
"URI",
"null",
]
# @return [String]
- define_property :how_performed, as: "howPerformed", types: [
+ define_property :followup, as: "followup", types: [
"string",
]
- # @return [String]
- define_property :followup, as: "followup", types: [
+ # @return [String,OpenActive::Models::Schema::MedicalEntity,URI]
+ define_property :preparation, as: "preparation", types: [
"string",
+ "OpenActive::Models::Schema::MedicalEntity",
+ "URI",
]
end
end
end
end