Sha256: ed0c14b37ce8b1400ac12442d1e4225fb43ec28a6f5a416ae5d2e9f5de7e4740
Contents?: true
Size: 1.16 KB
Versions: 1
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 [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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/health_plan_cost_sharing_specification.rb |