Skip to content

Commit

Permalink
@azure/cognitiveservices-contentmoderator ref doc changes (Azure#24350)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfberry authored Jan 25, 2023
1 parent 1584998 commit 05174d3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,21 +294,21 @@ export class ImageModeration {

/**
* Returns probabilities of the image containing racy or adult content.
* @param contentType The content type.
* @param imageUrl The image url.
* @param contentType The content type of the payload being sent to the server. Example: 'application/json'
* @param imageUrl The image url. Example: { value: 'https://yourdomain.com/sample.jpg', dataRepresentation: 'URL' }
* @param [options] The optional parameters
* @returns Promise<Models.ImageModerationEvaluateUrlInputResponse>
*/
evaluateUrlInput(contentType: string, imageUrl: Models.ImageUrl, options?: Models.ImageModerationEvaluateUrlInputOptionalParams): Promise<Models.ImageModerationEvaluateUrlInputResponse>;
/**
* @param contentType The content type.
* @param imageUrl The image url.
* @param contentType The content type returned. Example: 'application/json'
* @param imageUrl The image url. Example: { value: 'https://yourdomain.com/sample.jpg', dataRepresentation: 'URL' }
* @param callback The callback
*/
evaluateUrlInput(contentType: string, imageUrl: Models.ImageUrl, callback: msRest.ServiceCallback<Models.Evaluate>): void;
/**
* @param contentType The content type.
* @param imageUrl The image url.
* @param contentType The content type returned. Example: 'application/json'
* @param imageUrl The image url. Example: { value: 'https://yourdomain.com/sample.jpg', dataRepresentation: 'URL' }
* @param options The optional parameters
* @param callback The callback
*/
Expand Down

0 comments on commit 05174d3

Please sign in to comment.