Sha256: c0cad0ed688de0b32ec07f9b58dfeef44a8e6a5cc796016b99ab096cf348e62b
Contents?: true
Size: 1.56 KB
Versions: 3
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::MedicalCondition,URI] define_property :health_condition, as: "healthCondition", types: [ "OpenActive::Models::Schema::MedicalCondition", "URI", ] # @return [OpenActive::Enums::Schema::EventStatusType,String,OpenActive::Models::Schema::MedicalStudyStatus,URI,nil] define_property :status, as: "status", types: [ "OpenActive::Enums::Schema::EventStatusType", "string", "OpenActive::Models::Schema::MedicalStudyStatus", "URI", "null", ] # @return [OpenActive::Models::Schema::MedicalEntity,URI] define_property :study_subject, as: "studySubject", types: [ "OpenActive::Models::Schema::MedicalEntity", "URI", ] # @return [OpenActive::Models::Schema::Person,OpenActive::Models::Schema::Organization,URI] define_property :sponsor, as: "sponsor", types: [ "OpenActive::Models::Schema::Person", "OpenActive::Models::Schema::Organization", "URI", ] # @return [OpenActive::Models::Schema::AdministrativeArea,URI] define_property :study_location, as: "studyLocation", types: [ "OpenActive::Models::Schema::AdministrativeArea", "URI", ] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems