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