Sha256: ed0abcc257852a0b1211065735310024c54212f0aa769e5a58f202baa8a714d3
Contents?: true
Size: 969 Bytes
Versions: 3
Compression:
Stored size: 969 Bytes
Contents
module OpenActive module Models module Schema class BusinessAudience < ::OpenActive::Models::Schema::Audience # @!attribute type # @return [String] def type "schema:BusinessAudience" end # @return [OpenActive::Models::Schema::QuantitativeValue,URI] define_property :number_of_employees, as: "numberOfEmployees", types: [ "OpenActive::Models::Schema::QuantitativeValue", "URI", ] # @return [OpenActive::Models::Schema::QuantitativeValue,URI] define_property :yearly_revenue, as: "yearlyRevenue", types: [ "OpenActive::Models::Schema::QuantitativeValue", "URI", ] # @return [OpenActive::Models::Schema::QuantitativeValue,URI] define_property :years_in_operation, as: "yearsInOperation", types: [ "OpenActive::Models::Schema::QuantitativeValue", "URI", ] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems