Sha256: 0b008c88d5d70f22935da39be1ee94016dcfe545f35bcee67709dbec8ba1982a
Contents?: true
Size: 878 Bytes
Versions: 3
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] define_property :phonetic_text, as: "phoneticText", 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 :speech_to_text_markup, as: "speechToTextMarkup", types: [ "string", ] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems