Class TermList
Namespace: Microsoft.Azure.CognitiveServices.ContentModerator.Models
Assembly: Microsoft.Azure.CognitiveServices.Vision.ContentModerator.dll
Syntax
public class TermList
Constructors
TermList()
Declaration
public TermList ();
TermList(Nullable<Int32>, String, String, IDictionary<String,String>)
Declaration
public TermList (Nullable<int> id = null, string name = null, string description = null, System.Collections.Generic.IDictionary<string,string> metadata = null);
Parameters
|
Nullable<Int32>
id
|
|
String
name
|
|
String
description
|
|
IDictionary<String,String>
metadata
|
Properties
Description
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="Description")]
public string Description { get; set; }
Property Value
|
String
|
Id
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="Id")]
public Nullable<int> Id { get; set; }
Property Value
|
Nullable<Int32>
|
Metadata
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="Metadata")]
public System.Collections.Generic.IDictionary<string,string> Metadata { get; set; }
Property Value
|
IDictionary<String,String>
|
Name
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="Name")]
public string Name { get; set; }
Property Value
|
String
|