Sha256: 517fa3d6abeff1e6800c51c81f067dae7c6cbb42bf12cf2754a8e1d6cd7a7d90
Contents?: true
Size: 824 Bytes
Versions: 1
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 [Boolean,nil] define_property :is_accepting_new_patients, as: "isAcceptingNewPatients", types: [ "bool", "null", ] # @return [String] define_property :health_plan_network_id, as: "healthPlanNetworkId", types: [ "string", ] # @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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/medical_organization.rb |