Sha256: 24360b51fafd79cb61bf26adf6cf9fd91a91be97f678ea06623b2bde29ea226e

Contents?: true

Size: 575 Bytes

Versions: 3

Compression:

Stored size: 575 Bytes

Contents

module OpenActive
  module Models
    module Schema
      class ParentAudience < ::OpenActive::Models::Schema::PeopleAudience
        # @!attribute type
        # @return [String]
        def type
          "schema:ParentAudience"
        end

        # @return [BigDecimal,nil]
        define_property :child_max_age, as: "childMaxAge", types: [
          "Number",
          "null",
        ]

        # @return [BigDecimal,nil]
        define_property :child_min_age, as: "childMinAge", types: [
          "Number",
          "null",
        ]
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openactive-0.5.0 lib/openactive/models/schema/parent_audience.rb
openactive-0.4.0 lib/openactive/models/schema/parent_audience.rb
openactive-0.3.0 lib/openactive/models/schema/parent_audience.rb