CreateReviewBodyItem Constructors

Definition

Overloads

CreateReviewBodyItem()

Initializes a new instance of the CreateReviewBodyItem class.

CreateReviewBodyItem(String, String, String, String, IList<CreateReviewBodyItemMetadataItem>)

Initializes a new instance of the CreateReviewBodyItem class.

CreateReviewBodyItem()

Initializes a new instance of the CreateReviewBodyItem class.

public CreateReviewBodyItem ();
Public Sub New ()

Applies to

CreateReviewBodyItem(String, String, String, String, IList<CreateReviewBodyItemMetadataItem>)

Initializes a new instance of the CreateReviewBodyItem class.

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

Parameters

type
String

Type of the content. Possible values include: 'Image', 'Text'

content
String

Content to review.

contentId
String

Content Identifier.

callbackEndpoint
String

Optional CallbackEndpoint.

metadata
IList<CreateReviewBodyItemMetadataItem>

Optional metadata details.

Applies to