module OpenActive module Models module Schema class HealthPlanCostSharingSpecification < ::OpenActive::Models::Schema::Intangible # @!attribute type # @return [String] def type "schema:HealthPlanCostSharingSpecification" end # @return [BigDecimal,nil] define_property :health_plan_coinsurance_rate, as: "healthPlanCoinsuranceRate", types: [ "Number", "null", ] # @return [String] define_property :health_plan_coinsurance_option, as: "healthPlanCoinsuranceOption", types: [ "string", ] # @return [String] define_property :health_plan_pharmacy_category, as: "healthPlanPharmacyCategory", types: [ "string", ] # @return [OpenActive::Models::Schema::PriceSpecification,URI] define_property :health_plan_copay, as: "healthPlanCopay", types: [ "OpenActive::Models::Schema::PriceSpecification", "URI", ] # @return [String] define_property :health_plan_copay_option, as: "healthPlanCopayOption", types: [ "string", ] end end end end