Sha256: 957e6a5733afe4894643ff7700a3363fbd4b2c3b60808e770e53ba4065cd08d9
Contents?: true
Size: 1.83 KB
Versions: 2
Compression:
Stored size: 1.83 KB
Contents
module OpenActive module Models module Schema class HealthInsurancePlan < ::OpenActive::Models::Schema::Intangible # @!attribute type # @return [String] def type "schema:HealthInsurancePlan" end # @return [OpenActive::Models::Schema::HealthPlanFormulary,URI] define_property :includes_health_plan_formulary, as: "includesHealthPlanFormulary", types: [ "OpenActive::Models::Schema::HealthPlanFormulary", "URI", ] # @return [URI] define_property :health_plan_marketing_url, as: "healthPlanMarketingUrl", types: [ "URI", ] # @return [URI,String] define_property :uses_health_plan_id_standard, as: "usesHealthPlanIdStandard", types: [ "URI", "string", ] # @return [OpenActive::Models::Schema::ContactPoint,URI] define_property :contact_point, as: "contactPoint", types: [ "OpenActive::Models::Schema::ContactPoint", "URI", ] # @return [String] define_property :health_plan_drug_tier, as: "healthPlanDrugTier", types: [ "string", ] # @return [String] define_property :health_plan_drug_option, as: "healthPlanDrugOption", types: [ "string", ] # @return [URI] define_property :benefits_summary_url, as: "benefitsSummaryUrl", types: [ "URI", ] # @return [OpenActive::Models::Schema::HealthPlanNetwork,URI] define_property :includes_health_plan_network, as: "includesHealthPlanNetwork", types: [ "OpenActive::Models::Schema::HealthPlanNetwork", "URI", ] # @return [String] define_property :health_plan_id, as: "healthPlanId", types: [ "string", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/health_insurance_plan.rb |
openactive-0.4.0 | lib/openactive/models/schema/health_insurance_plan.rb |