BatchDetectLanguagePiiEntitiesResult¶
- 
class oci.ai_language.models.BatchDetectLanguagePiiEntitiesResult(**kwargs)¶
- Bases: - object- Result of batch detect personal identification. - Methods - __init__(**kwargs)- Initializes a new BatchDetectLanguagePiiEntitiesResult object with values from keyword arguments. - Attributes - documents- [Required] Gets the documents of this BatchDetectLanguagePiiEntitiesResult. - errors- Gets the errors of this BatchDetectLanguagePiiEntitiesResult. - 
__init__(**kwargs)¶
- Initializes a new BatchDetectLanguagePiiEntitiesResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - documents (list[oci.ai_language.models.PiiEntityDocumentResult]) – The value to assign to the documents property of this BatchDetectLanguagePiiEntitiesResult.
- errors (list[oci.ai_language.models.DocumentError]) – The value to assign to the errors property of this BatchDetectLanguagePiiEntitiesResult.
 
 - 
documents¶
- [Required] Gets the documents of this BatchDetectLanguagePiiEntitiesResult. List of succeeded document response. - Returns: - The documents of this BatchDetectLanguagePiiEntitiesResult. - Return type: - list[oci.ai_language.models.PiiEntityDocumentResult] 
 - 
errors¶
- Gets the errors of this BatchDetectLanguagePiiEntitiesResult. List of failed document response. - Returns: - The errors of this BatchDetectLanguagePiiEntitiesResult. - Return type: - list[oci.ai_language.models.DocumentError] 
 
-