lib/openactive/models/schema/medical_procedure.rb in openactive-0.2.2 vs lib/openactive/models/schema/medical_procedure.rb in openactive-0.3.0
- old
+ new
@@ -6,43 +6,43 @@
# @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",
"string",
"URI",
]
# @return [String]
- define_property :followup, as: "followup", types: [
+ define_property :body_location, as: "bodyLocation", types: [
"string",
]
- # @return [String]
- define_property :how_performed, as: "howPerformed", types: [
- "string",
- ]
-
- # @return [OpenActive::Enums::Schema::EventStatusType,String,OpenActive::Models::Schema::MedicalStudyStatus,URI,nil]
+ # @return [String,OpenActive::Enums::Schema::EventStatusType,OpenActive::Models::Schema::MedicalStudyStatus,URI,nil]
define_property :status, as: "status", types: [
- "OpenActive::Enums::Schema::EventStatusType",
"string",
+ "OpenActive::Enums::Schema::EventStatusType",
"OpenActive::Models::Schema::MedicalStudyStatus",
"URI",
"null",
]
- # @return [OpenActive::Models::Schema::MedicalProcedureType,URI]
- define_property :procedure_type, as: "procedureType", types: [
- "OpenActive::Models::Schema::MedicalProcedureType",
- "URI",
+ # @return [String]
+ define_property :how_performed, as: "howPerformed", types: [
+ "string",
]
# @return [String]
- define_property :body_location, as: "bodyLocation", types: [
+ define_property :followup, as: "followup", types: [
"string",
]
end
end
end