class Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ProjectSettings
Represents settings associated with a project.
Attributes
classification_type[RW]
@return [Classifier] Gets or sets the classification type of the project. Possible values include: 'Multiclass', 'Multilabel'
domain_id[RW]
@return Gets or sets the id of the Domain
to use with this project.
Public Class Methods
mapper()
click to toggle source
Mapper for ProjectSettings
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2.2/generated/azure_cognitiveservices_customvisiontraining/models/project_settings.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ProjectSettings', type: { name: 'Composite', class_name: 'ProjectSettings', model_properties: { domain_id: { client_side_validation: true, required: false, serialized_name: 'domainId', type: { name: 'String' } }, classification_type: { client_side_validation: true, required: false, serialized_name: 'classificationType', type: { name: 'String' } } } } } end