Sha256: d80ce4ad8bf098ad88a838e7cd6b13265351803f7ccce207e5db8094c65de850
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
module OpenActive module Models module Schema class HealthPlanCostSharingSpecification < ::OpenActive::Models::Schema::Intangible # @!attribute type # @return [String] def type "schema:HealthPlanCostSharingSpecification" end # @return [String] define_property :health_plan_copay_option, as: "healthPlanCopayOption", types: [ "string", ] # @return [OpenActive::Models::Schema::PriceSpecification] define_property :health_plan_copay, as: "healthPlanCopay", types: [ "OpenActive::Models::Schema::PriceSpecification", ] # @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", ] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems