Sha256: c3c1217c3ea62d8c4319dc6be50aad5d9a00134603ea2891bdaa97a7e003f4dd

Contents?: true

Size: 514 Bytes

Versions: 1

Compression:

Stored size: 514 Bytes

Contents

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

        # @return [OpenActive::Models::Schema::SolveMathAction,String,URI]
        define_property :math_expression, as: "mathExpression", types: [
          "OpenActive::Models::Schema::SolveMathAction",
          "string",
          "URI",
        ]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openactive-0.3.0 lib/openactive/models/schema/math_solver.rb