Sha256: b6b8f6b09adcefc5bdc8ac3d2916465b448460172ffc0789334452f9ff9412ad
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 KB
Contents
module OpenActive module Models module Schema class MedicalStudy < ::OpenActive::Models::Schema::MedicalEntity # @!attribute type # @return [String] def type "schema:MedicalStudy" end # @return [OpenActive::Models::Schema::MedicalEntity,URI] define_property :study_subject, as: "studySubject", types: [ "OpenActive::Models::Schema::MedicalEntity", "URI", ] # @return [OpenActive::Models::Schema::AdministrativeArea,URI] define_property :study_location, as: "studyLocation", types: [ "OpenActive::Models::Schema::AdministrativeArea", "URI", ] # @return [OpenActive::Enums::Schema::EventStatusType,OpenActive::Models::Schema::MedicalStudyStatus,String,URI,nil] define_property :status, as: "status", types: [ "OpenActive::Enums::Schema::EventStatusType", "OpenActive::Models::Schema::MedicalStudyStatus", "string", "URI", "null", ] # @return [OpenActive::Models::Schema::Organization,OpenActive::Models::Schema::Person,URI] define_property :sponsor, as: "sponsor", types: [ "OpenActive::Models::Schema::Organization", "OpenActive::Models::Schema::Person", "URI", ] # @return [OpenActive::Models::Schema::MedicalCondition,URI] define_property :health_condition, as: "healthCondition", types: [ "OpenActive::Models::Schema::MedicalCondition", "URI", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/medical_study.rb |
openactive-0.4.0 | lib/openactive/models/schema/medical_study.rb |