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", ] end end end end