Sha256: 250f228f2c5056b9621f80d437bdf04c9cf9b6c40809e296efce4cafe64c6272
Contents?: true
Size: 878 Bytes
Versions: 2
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 :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", ] # @return [String] define_property :phonetic_text, as: "phoneticText", types: [ "string", ] # @return [String] define_property :speech_to_text_markup, as: "speechToTextMarkup", types: [ "string", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/pronounceable_text.rb |
openactive-0.4.0 | lib/openactive/models/schema/pronounceable_text.rb |