lib/openactive/models/schema/pronounceable_text.rb in openactive-0.3.0 vs lib/openactive/models/schema/pronounceable_text.rb in openactive-0.4.0
- old
+ new
@@ -7,28 +7,28 @@
def type
"schema:PronounceableText"
end
# @return [String]
- define_property :phonetic_text, as: "phoneticText", types: [
+ define_property :text_value, as: "textValue", types: [
"string",
]
- # @return [String]
- define_property :speech_to_text_markup, as: "speechToTextMarkup", types: [
+ # @return [String,OpenActive::Models::Schema::Language,URI]
+ define_property :in_language, as: "inLanguage", types: [
"string",
+ "OpenActive::Models::Schema::Language",
+ "URI",
]
# @return [String]
- define_property :text_value, as: "textValue", types: [
+ define_property :phonetic_text, as: "phoneticText", types: [
"string",
]
- # @return [String,OpenActive::Models::Schema::Language,URI]
- define_property :in_language, as: "inLanguage", types: [
+ # @return [String]
+ define_property :speech_to_text_markup, as: "speechToTextMarkup", types: [
"string",
- "OpenActive::Models::Schema::Language",
- "URI",
]
end
end
end
end