Sha256: a49fa1c2fcd1f09e705af7c7e727d35a1bd15dbef4edb008f363933a543ffceb

Contents?: true

Size: 713 Bytes

Versions: 1

Compression:

Stored size: 713 Bytes

Contents

module OpenActive
  module Models
    module Schema
      class MedicalSign < ::OpenActive::Models::Schema::MedicalSignOrSymptom
        # @!attribute type
        # @return [String]
        def type
          "schema:MedicalSign"
        end

        # @return [OpenActive::Models::Schema::MedicalTest,URI]
        define_property :identifying_test, as: "identifyingTest", types: [
          "OpenActive::Models::Schema::MedicalTest",
          "URI",
        ]

        # @return [OpenActive::Models::Schema::PhysicalExam,URI]
        define_property :identifying_exam, as: "identifyingExam", types: [
          "OpenActive::Models::Schema::PhysicalExam",
          "URI",
        ]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openactive-0.3.0 lib/openactive/models/schema/medical_sign.rb