Sha256: e6017a06d4a3f1c4e3cf7050d4603a41a5bd6626a734ff1bbc407e16b42921fc
Contents?: true
Size: 824 Bytes
Versions: 2
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 [OpenActive::Models::Schema::MedicalSpecialty,URI] define_property :medical_specialty, as: "medicalSpecialty", types: [ "OpenActive::Models::Schema::MedicalSpecialty", "URI", ] # @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", ] 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_organization.rb |
openactive-0.4.0 | lib/openactive/models/schema/medical_organization.rb |