class Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationUpdateObject
Object model for updating the name or description of an application.
Attributes
description[RW]
@return [String] The application's new description.
name[RW]
@return [String] The application's new name.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationUpdateObject
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2.0/generated/azure_cognitiveservices_luisauthoring/models/application_update_object.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationUpdateObject', type: { name: 'Composite', class_name: 'ApplicationUpdateObject', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } } } } } end