class Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainCreateBaseObject

A model object containing the name of the custom prebuilt entity and the name of the domain to which this model belongs.

Attributes

domain_name[RW]

@return [String] The domain name.

Public Class Methods

mapper() click to toggle source

Mapper for PrebuiltDomainCreateBaseObject class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2.0/generated/azure_cognitiveservices_luisauthoring/models/prebuilt_domain_create_base_object.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrebuiltDomainCreateBaseObject',
    type: {
      name: 'Composite',
      class_name: 'PrebuiltDomainCreateBaseObject',
      model_properties: {
        domain_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'domainName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end