module OpenActive module Models module Schema class StatisticalPopulation < ::OpenActive::Models::Schema::Intangible # @!attribute type # @return [String] def type "schema:StatisticalPopulation" end # @return [] define_property :population_type, as: "populationType", types: [ ] # @return [int,nil] define_property :constraining_property, as: "constrainingProperty", types: [ "int", "null", ] # @return [int,nil] define_property :num_constraints, as: "numConstraints", types: [ "int", "null", ] end end end end