Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
class APIError {
/**
* Create a APIError.
* @member {object} [error]
* @member {string} [error.code]
* @member {string} [error.message]
* @property {object} [error]
* @property {string} [error.code]
* @property {string} [error.message]
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
class Address {
/**
* Create a Address.
* @member {string} [text] Detected Address.
* @member {number} [index] Index(Location) of the Address in the input text
* content.
* @property {string} [text] Detected Address.
* @property {number} [index] Index(Location) of the Address in the input
* text content.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
class Body {
/**
* Create a Body.
* @member {string} [name] Name of the list.
* @member {string} [description] Description of the list.
* @member {object} [metadata] Metadata of the list.
* @property {string} [name] Name of the list.
* @property {string} [description] Description of the list.
* @property {object} [metadata] Metadata of the list.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
class BodyModel {
/**
* Create a BodyModel.
* @member {string} [dataRepresentation] Default value: 'URL' .
* @member {string} [value]
* @property {string} [dataRepresentation] Default value: 'URL' .
* @property {string} [value]
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
class Candidate {
/**
* Create a Candidate.
* @member {string} [text] The text found.
* @member {number} [confidence] The confidence level.
* @property {string} [text] The text found.
* @property {number} [confidence] The confidence level.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
class Classification {
/**
* Create a Classification.
* @member {object} [category1] The category1 score details of the text. <a
* @property {object} [category1] The category1 score details of the text. <a
* href="https://aka.ms/textClassifyCategories">Click here</a> for more
* details on category classification.
* @member {number} [category1.score] The category1 score.
* @member {object} [category2] The category2 score details of the text. <a
* @property {number} [category1.score] The category1 score.
* @property {object} [category2] The category2 score details of the text. <a
* href="https://aka.ms/textClassifyCategories">Click here</a> for more
* details on category classification.
* @member {number} [category2.score] The category2 score.
* @member {object} [category3] The category3 score details of the text. <a
* @property {number} [category2.score] The category2 score.
* @property {object} [category3] The category3 score details of the text. <a
* href="https://aka.ms/textClassifyCategories">Click here</a> for more
* details on category classification.
* @member {number} [category3.score] The category3 score.
* @member {boolean} [reviewRecommended] The review recommended flag.
* @property {number} [category3.score] The category3 score.
* @property {boolean} [reviewRecommended] The review recommended flag.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class ClassificationCategory1 {
/**
* Create a ClassificationCategory1.
* @member {number} [score] The category1 score.
* @property {number} [score] The category1 score.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class ClassificationCategory2 {
/**
* Create a ClassificationCategory2.
* @member {number} [score] The category2 score.
* @property {number} [score] The category2 score.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class ClassificationCategory3 {
/**
* Create a ClassificationCategory3.
* @member {number} [score] The category3 score.
* @property {number} [score] The category3 score.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class Content {
/**
* Create a Content.
* @member {string} contentValue Content to evaluate for a job.
* @property {string} contentValue Content to evaluate for a job.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
class CreateReviewBodyItem {
/**
* Create a CreateReviewBodyItem.
* @member {string} type Type of the content. Possible values include:
* @property {string} type Type of the content. Possible values include:
* 'Image', 'Text'
* @member {string} content Content to review.
* @member {string} contentId Content Identifier.
* @member {string} [callbackEndpoint] Optional CallbackEndpoint.
* @member {array} [metadata] Optional metadata details.
* @property {string} content Content to review.
* @property {string} contentId Content Identifier.
* @property {string} [callbackEndpoint] Optional CallbackEndpoint.
* @property {array} [metadata] Optional metadata details.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
class CreateReviewBodyItemMetadataItem {
/**
* Create a CreateReviewBodyItemMetadataItem.
* @member {string} key Your key parameter.
* @member {string} value Your value parameter.
* @property {string} key Your key parameter.
* @property {string} value Your value parameter.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
class CreateVideoReviewsBodyItem {
/**
* Create a CreateVideoReviewsBodyItem.
* @member {array} [videoFrames] Optional metadata details.
* @member {array} [metadata] Optional metadata details.
* @member {string} content Video content url to review.
* @member {string} contentId Content Identifier.
* @member {string} status Status of the video(Complete,Unpublished,Pending).
* Possible values include: 'Complete', 'Unpublished', 'Pending'
* @member {number} [timescale] Timescale of the video.
* @member {string} [callbackEndpoint] Optional CallbackEndpoint.
* @property {array} [videoFrames] Optional metadata details.
* @property {array} [metadata] Optional metadata details.
* @property {string} content Video content url to review.
* @property {string} contentId Content Identifier.
* @property {string} status Status of the
* video(Complete,Unpublished,Pending). Possible values include: 'Complete',
* 'Unpublished', 'Pending'
* @property {number} [timescale] Timescale of the video.
* @property {string} [callbackEndpoint] Optional CallbackEndpoint.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
class CreateVideoReviewsBodyItemMetadataItem {
/**
* Create a CreateVideoReviewsBodyItemMetadataItem.
* @member {string} key Your key parameter.
* @member {string} value Your value parameter.
* @property {string} key Your key parameter.
* @property {string} value Your value parameter.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
class CreateVideoReviewsBodyItemVideoFramesItem {
/**
* Create a CreateVideoReviewsBodyItemVideoFramesItem.
* @member {string} id Id of the frame.
* @member {number} timestamp Timestamp of the frame.
* @member {string} frameImage Frame image Url.
* @member {array} [reviewerResultTags]
* @member {array} [metadata] Optional metadata details.
* @property {string} id Id of the frame.
* @property {number} timestamp Timestamp of the frame.
* @property {string} frameImage Frame image Url.
* @property {array} [reviewerResultTags]
* @property {array} [metadata] Optional metadata details.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
class CreateVideoReviewsBodyItemVideoFramesItemMetadataItem {
/**
* Create a CreateVideoReviewsBodyItemVideoFramesItemMetadataItem.
* @member {string} key Your key parameter.
* @member {string} value Your value parameter.
* @property {string} key Your key parameter.
* @property {string} value Your value parameter.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
class CreateVideoReviewsBodyItemVideoFramesItemReviewerResultTagsItem {
/**
* Create a CreateVideoReviewsBodyItemVideoFramesItemReviewerResultTagsItem.
* @member {string} key Your key parameter.
* @member {string} value Your value parameter.
* @property {string} key Your key parameter.
* @property {string} value Your value parameter.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
class DetectedLanguage {
/**
* Create a DetectedLanguage.
* @member {string} [detectedLanguage] The detected language.
* @member {object} [status] The detect language status
* @member {number} [status.code] Status code.
* @member {string} [status.description] Status description.
* @member {string} [status.exception] Exception status.
* @member {string} [trackingId] The tracking id.
* @property {string} [detectedLanguage] The detected language.
* @property {object} [status] The detect language status
* @property {number} [status.code] Status code.
* @property {string} [status.description] Status description.
* @property {string} [status.exception] Exception status.
* @property {string} [trackingId] The tracking id.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
class DetectedTerms {
/**
* Create a DetectedTerms.
* @member {number} [index] Index(Location) of the detected profanity term in
* the input text content.
* @member {number} [originalIndex] Original Index(Location) of the detected
* profanity term in the input text content.
* @member {number} [listId] Matched Terms list Id.
* @member {string} [term] Detected profanity term.
* @property {number} [index] Index(Location) of the detected profanity term
* in the input text content.
* @property {number} [originalIndex] Original Index(Location) of the
* detected profanity term in the input text content.
* @property {number} [listId] Matched Terms list Id.
* @property {string} [term] Detected profanity term.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
class Email {
/**
* Create a Email.
* @member {string} [detected] Detected Email Address from the input text
* @property {string} [detected] Detected Email Address from the input text
* content.
* @member {string} [subType] Subtype of the detected Email Address.
* @member {string} [text] Email Address in the input text content.
* @member {number} [index] Index(Location) of the Email address in the input
* text content.
* @property {string} [subType] Subtype of the detected Email Address.
* @property {string} [text] Email Address in the input text content.
* @property {number} [index] Index(Location) of the Email address in the
* input text content.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
class ErrorModel {
/**
* Create a ErrorModel.
* @member {string} [code]
* @member {string} [message]
* @property {string} [code]
* @property {string} [message]
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,22 @@
class Evaluate {
/**
* Create a Evaluate.
* @member {string} [cacheID] The cache id.
* @member {boolean} [result] Evaluate result.
* @member {string} [trackingId] The tracking id.
* @member {number} [adultClassificationScore] The adult classification
* @property {string} [cacheID] The cache id.
* @property {boolean} [result] Evaluate result.
* @property {string} [trackingId] The tracking id.
* @property {number} [adultClassificationScore] The adult classification
* score.
* @member {boolean} [isImageAdultClassified] Indicates if an image is
* @property {boolean} [isImageAdultClassified] Indicates if an image is
* classified as adult.
* @member {number} [racyClassificationScore] The racy classication score.
* @member {boolean} [isImageRacyClassified] Indicates if the image is
* @property {number} [racyClassificationScore] The racy classification
* score.
* @property {boolean} [isImageRacyClassified] Indicates if the image is
* classified as racy.
* @member {array} [advancedInfo] The advanced info.
* @member {object} [status] The evaluate status
* @member {number} [status.code] Status code.
* @member {string} [status.description] Status description.
* @member {string} [status.exception] Exception status.
* @property {array} [advancedInfo] The advanced info.
* @property {object} [status] The evaluate status
* @property {number} [status.code] Status code.
* @property {string} [status.description] Status description.
* @property {string} [status.exception] Exception status.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
class Face {
/**
* Create a Face.
* @member {number} [bottom] The bottom coordinate.
* @member {number} [left] The left coordinate.
* @member {number} [right] The right coordinate.
* @member {number} [top] The top coordinate.
* @property {number} [bottom] The bottom coordinate.
* @property {number} [left] The left coordinate.
* @property {number} [right] The right coordinate.
* @property {number} [top] The top coordinate.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
class FoundFaces {
/**
* Create a FoundFaces.
* @member {object} [status] The evaluate status
* @member {number} [status.code] Status code.
* @member {string} [status.description] Status description.
* @member {string} [status.exception] Exception status.
* @member {string} [trackingId] The tracking id.
* @member {string} [cacheId] The cache id.
* @member {boolean} [result] True if result was found.
* @member {number} [count] Number of faces found.
* @member {array} [advancedInfo] The advanced info.
* @member {array} [faces] The list of faces.
* @property {object} [status] The evaluate status
* @property {number} [status.code] Status code.
* @property {string} [status.description] Status description.
* @property {string} [status.exception] Exception status.
* @property {string} [trackingId] The tracking id.
* @property {string} [cacheId] The cache id.
* @property {boolean} [result] True if result was found.
* @property {number} [count] Number of faces found.
* @property {array} [advancedInfo] The advanced info.
* @property {array} [faces] The list of faces.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
class Frame {
/**
* Create a Frame.
* @member {string} [timestamp] Timestamp of the frame.
* @member {string} [frameImage] Frame image.
* @member {array} [metadata] Array of KeyValue.
* @member {array} [reviewerResultTags] Reviewer result tags.
* @property {string} [timestamp] Timestamp of the frame.
* @property {string} [frameImage] Frame image.
* @property {array} [metadata] Array of KeyValue.
* @property {array} [reviewerResultTags] Reviewer result tags.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
class Frames {
/**
* Create a Frames.
* @member {string} [reviewId] Id of the review.
* @member {array} [videoFrames]
* @property {string} [reviewId] Id of the review.
* @property {array} [videoFrames]
*/
constructor() {
}
Expand Down
Loading