class Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationSettings
The application settings.
Attributes
id[RW]
@return The application ID.
is_public[RW]
@return [Boolean] Setting your application as public allows other people to use your application's endpoint using their own keys for billing purposes.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationSettings
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2.0/generated/azure_cognitiveservices_luisauthoring/models/application_settings.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationSettings', type: { name: 'Composite', class_name: 'ApplicationSettings', model_properties: { id: { client_side_validation: true, required: true, serialized_name: 'id', type: { name: 'String' } }, is_public: { client_side_validation: true, required: true, serialized_name: 'public', type: { name: 'Boolean' } } } } } end