Sha256: 47ff192a66dadbb389529ee3a4a27b905b9f99a83753f60ca863bd6170bc7112

Contents?: true

Size: 824 Bytes

Versions: 3

Compression:

Stored size: 824 Bytes

Contents

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

        # @return [String]
        define_property :health_plan_network_id, as: "healthPlanNetworkId", types: [
          "string",
        ]

        # @return [Boolean,nil]
        define_property :is_accepting_new_patients, as: "isAcceptingNewPatients", types: [
          "bool",
          "null",
        ]

        # @return [OpenActive::Models::Schema::MedicalSpecialty,URI]
        define_property :medical_specialty, as: "medicalSpecialty", types: [
          "OpenActive::Models::Schema::MedicalSpecialty",
          "URI",
        ]
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openactive-0.2.2 lib/openactive/models/schema/medical_organization.rb
openactive-0.2.1 lib/openactive/models/schema/medical_organization.rb
openactive-0.2.0 lib/openactive/models/schema/medical_organization.rb