class Azure::CognitiveServices::LuisAuthoring::V2_0::Models::WordListObject
Sublist of items for a list entity.
Attributes
canonical_form[RW]
@return [String] The standard form that the list represents.
list[RW]
@return [Array<String>] List of synonym words.
Public Class Methods
mapper()
click to toggle source
Mapper for WordListObject
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2.0/generated/azure_cognitiveservices_luisauthoring/models/word_list_object.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WordListObject', type: { name: 'Composite', class_name: 'WordListObject', model_properties: { canonical_form: { client_side_validation: true, required: false, serialized_name: 'canonicalForm', type: { name: 'String' } }, list: { client_side_validation: true, required: false, serialized_name: 'list', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end