Review Constructors

Definition

Overloads

Review()

Initializes a new instance of the Review class.

Review(String, String, String, IList<KeyValuePair>, String, IList<KeyValuePair>, String, String, String, String)

Initializes a new instance of the Review class.

Review()

Initializes a new instance of the Review class.

public Review ();
Public Sub New ()

Applies to

Review(String, String, String, IList<KeyValuePair>, String, IList<KeyValuePair>, String, String, String, String)

Initializes a new instance of the Review class.

public Review (string reviewId = default, string subTeam = default, string status = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.KeyValuePair> reviewerResultTags = default, string createdBy = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.KeyValuePair> metadata = default, string type = default, string content = default, string contentId = default, string callbackEndpoint = default);
new Microsoft.Azure.CognitiveServices.ContentModerator.Models.Review : string * string * string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.KeyValuePair> * string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.ContentModerator.Models.KeyValuePair> * string * string * string * string -> Microsoft.Azure.CognitiveServices.ContentModerator.Models.Review
Public Sub New (Optional reviewId As String = Nothing, Optional subTeam As String = Nothing, Optional status As String = Nothing, Optional reviewerResultTags As IList(Of KeyValuePair) = Nothing, Optional createdBy As String = Nothing, Optional metadata As IList(Of KeyValuePair) = Nothing, Optional type As String = Nothing, Optional content As String = Nothing, Optional contentId As String = Nothing, Optional callbackEndpoint As String = Nothing)

Parameters

reviewId
String

Id of the review.

subTeam
String

Name of the subteam.

status
String

The status string (<Pending, Complete>).

reviewerResultTags
IList<KeyValuePair>

Array of KeyValue with Reviewer set Tags.

createdBy
String

The reviewer name.

metadata
IList<KeyValuePair>

Array of KeyValue.

type
String

The type of content.

content
String

The content value.

contentId
String

Id of the content.

callbackEndpoint
String

The callback endpoint.

Applies to