Sha256: 65f8f742a4ce70057cb81eebc5cc57b0b3c21410a89bb870a5cabb071f8e9600

Contents?: true

Size: 878 Bytes

Versions: 1

Compression:

Stored size: 878 Bytes

Contents

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

        # @return [String]
        define_property :phonetic_text, as: "phoneticText", types: [
          "string",
        ]

        # @return [String]
        define_property :speech_to_text_markup, as: "speechToTextMarkup", types: [
          "string",
        ]

        # @return [String]
        define_property :text_value, as: "textValue", types: [
          "string",
        ]

        # @return [String,OpenActive::Models::Schema::Language,URI]
        define_property :in_language, as: "inLanguage", types: [
          "string",
          "OpenActive::Models::Schema::Language",
          "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/pronounceable_text.rb